代码搜索:stdlib

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

代码结果 10,000
www.eeworm.com/read/362558/9992490

h lstr.h

#include "stdio.h" #include "stdlib.h" /*链式存储方式下的模式匹配,每个字符用一结点表示*/ typedef struct Block{ char ch; struct Block *next; }Block; typedef struct { Block *head; Block *tail; in
www.eeworm.com/read/362558/9992648

h hash.h

#include #include #define m 13 #define NULLKEY 0 typedef int KeyType; /* 假设关键字为整型 */ typedef struct { KeyType key; }RecordType; typedef RecordType Hash
www.eeworm.com/read/362558/9992850

h tree.h

#include #include typedef char DataType; typedef struct CSNode { DataType data; /*结点信息*/ struct CSNode *FirstChild; /*第一个孩子*/ struct CSNode
www.eeworm.com/read/166618/10013260

c h.c

#include #include #include #include #include #include #include #include /*窗口 函数*/ #include #inclu
www.eeworm.com/read/166020/10040987

c execle.c

/*execle*/ #include #include #include int main() { /*命令参数列表,必须以NULL结尾*/ char *envp[]={"PATH=/tmp","USER=sunq",NULL}; if(fork()==0){ /*调用execle函数,注意这里也要指出en
www.eeworm.com/read/166020/10040998

c execve.c

#include #include #include int main() { /*命令参数列表,必须以NULL结尾*/ char *arg[]={"env",NULL}; char *envp[]={"PATH=/tmp","USER=sunq",NULL}; if(fork()==0){ if(ex
www.eeworm.com/read/165672/10054627

c test.c

/*#include "STDIO.h" #include "STDLIB.H" */ long i=0; int pt[53000]; main() { for(i=0;i
www.eeworm.com/read/165672/10054645

c try2.c

/*#include "STDIO.h" #include "STDLIB.H" */ long i=0; int pt[53000]; main() { for(i=0;i
www.eeworm.com/read/165513/10058836

h cfg.h

#include #include #include class CFG { public: char *ContentBegin, *ContentEnd; BOOL Title; float ContentRatio; CFG(FILE *fp); CFG(); ~CFG(){}; prote
www.eeworm.com/read/165447/10062177

h prediction.h

#ifndef _PRED #define _PRED #define MAX 200 #include "stdlib.h" #include "stdio.h" #include "time.h" #endif