- 1、open函数
int open(const char *pathname, int flags);
int open(const char *pathname, int flags, mode_t mode);
成功返回一个文件描述符(正整数)
失败返回 -1
- 2、fopen函数
FILE *fopen(const char *pathname, const char *mode);
成功返回一个文件指针
失败返回 NULL
- 3、malloc 函数
void *malloc(size_t size);
成功返回分配的内存空间的指针
失败返回 NULL