📄 connexion.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -