代码搜索:Write
找到约 10,000 项符合「Write」的源代码
代码结果 10,000
www.eeworm.com/read/394472/8222808
write
www.eeworm.com/read/364306/9913126
write +y
www.eeworm.com/read/291779/8395758
c write.c
/*
* linux/lib/write.c
*
* (C) 1991 Linus Torvalds
*
* 该程序中包括一个向文件描述符写操作函数write()。该函数向文件描述符指定的
* 文件写入count 字节的数据到缓冲区buf 中。
*/
#include
#define __LIBRARY__
// Linux 标准头
www.eeworm.com/read/291779/8396435
c write.c
/*
* linux/lib/write.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include // Linux 标准头文件。定义了各种符号常数和类型,并申明了各种函数。
// 如定义了__LIBRARY__,则还包括系统调用号和内嵌汇编_syscall0()等。
//// 写文件系统调用函数。
//
www.eeworm.com/read/391387/8406091
gif write.gif
www.eeworm.com/read/291498/8412338
c write.c
/*
* linux/lib/write.c
*
* (C) 1991 Linus Torvalds
*/
#define __LIBRARY__
#include
_syscall3(int,write,int,fd,const char *,buf,off_t,count)
www.eeworm.com/read/291452/8417982