read

函数原型:

#include<unistd.h>

size_t read(int fildes,void *buf,size_t nbyte)


fildes:文件描述符

*buf:要读的内容(用数组变量留出)

nbytes:要读多少字节


你可能感兴趣的:(read)