⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 connexion.h

📁 larbin是一种开源的网络爬虫/网络蜘蛛
💻 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);int ecrireInt2 (int fd, int i);int ecrireInti (int fd, int i, char *f);int ecrireIntl (int fd, long i, char *f);/** 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 + -