?? 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 + -