connexion.h
来自「Larbin互联网蜘蛛索引系统」· C头文件 代码 · 共 38 行
H
38 行
// Larbin// Sebastien Ailleret// 15-11-99 -> 14-12-99#ifndef CONNEXION_H#define CONNEXION_H/* make write until everything is written * return 0 on success, 1 otherwise * Don't work on non-blocking fds... */int ecrire (int fd, char *buf);/* make write until everything is written * return 0 on success, 1 otherwise * Don't work on non-blocking fds... */int ecrireBuff (int fd, char *buf, int count);/** Write an int on a fds * (uses ecrire) */int ecrireInt (int fd, int i);/** Write an int on a fds * (uses ecrire) */int ecrireLong (int fd, long i);/* Write a char on a fds * return 0 on success, 1 otherwise * Don't work on non-blocking fds... */int ecrireChar (int fd, char c);#endif // CONNEXION_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?