代码搜索:Torvalds

找到约 10,000 项符合「Torvalds」的源代码

代码结果 10,000
www.eeworm.com/read/221695/14728067

c write.c

/* * linux/lib/write.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #define __LIBRARY__ #include #include _syscall3(int,write,int,fd,const char *,
www.eeworm.com/read/221695/14728073

c close.c

/* * linux/lib/close.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #define __LIBRARY__ #include _syscall1(int,close,int,fd)
www.eeworm.com/read/221695/14728082

c string.c

/* * linux/lib/string.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #ifndef __GNUC__ #error I want gcc! #endif #include #define extern #define inline #define
www.eeworm.com/read/221695/14728084

c execve.c

/* * linux/lib/execve.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #define __LIBRARY__ #include _syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/221695/14728086

c errno.c

/* * linux/lib/errno.c * * Copyright (C) 1991, 1992 Linus Torvalds */ int errno;
www.eeworm.com/read/119727/14823789

c errno.c

/* * linux/lib/errno.c * * Copyright (C) 1991, 1992 Linus Torvalds */ int errno;
www.eeworm.com/read/218591/14914372

c ctype.c

/* * linux/lib/ctype.c * 479 * (C) 1991 Linus Torvalds */ #include // 字符类型头文件。定义了一些有关字符类型判断和转换的宏。 char _ctmp; // 一个临时字符变量,供ctype.h 文件中转换字符宏函数使用。 // 字符特性数组(表),定义了各个字符对应的属性,这些属性类型(如_C 等)在
www.eeworm.com/read/218591/14914383

c string.c

/* * linux/lib/string.c * * (C) 1991 Linus Torvalds */ #ifndef __GNUC__ // 需要GNU 的C 编译器编译。 #error I want gcc! #endif #define extern #define inline #define __LIBRARY__ #include
www.eeworm.com/read/216437/15014032

c dup.c

/* * linux/lib/dup.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include _syscall1(int,dup,int,fd)
www.eeworm.com/read/216437/15014034

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)