io.h头文件
读文件函数:
int _read( int fd,
void *buffer,
unsigned int count);
其中fd: file discriptor reffering to the open file
buffer: storage location for data;
count: maximum number of bytes;
返回值是读取的字节数,返回值为0表示读取到的是EOF,返回值为-1表示出错。
写文件函数:
int _write( int fd,
const void *buffer,
unsigned int count );
各个参数和_read函数类似;
成功时返回写入文件的字节数,出错时返回-1;