代码搜索:Torvalds

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

代码结果 10,000
www.eeworm.com/read/131256/14154042

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/130981/14164481

c ctype.c

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

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/228948/14356942

c ctype.c

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

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/225618/14529708

cc ctype.cc

/* * linux/lib/ctype.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #include char _ctmp; unsigned char _ctype[] = {0x00, /* EOF */ _C,_C,_C,_C,_C,_C,_C,_C, /* 0-7 */ _C,_C
www.eeworm.com/read/124442/14566789

c setsid.c

/* * linux/lib/setsid.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #define __LIBRARY__ #include #include _syscall0(pid_t,setsid)
www.eeworm.com/read/124442/14566791

c dup.c

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

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/124442/14566798

c close.c

/* * linux/lib/close.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #define __LIBRARY__ #include _syscall1(int,close,int,fd)