代码搜索:信号链

找到约 10,000 项符合「信号链」的源代码

代码结果 10,000
www.eeworm.com/read/180558/9302807

c bo3-2.c

/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */ Status InitQueue(LinkQueue *Q) { /* 构造一个空队列Q */ (*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode)); if(!(*Q).front) exit(OVERFLOW); (
www.eeworm.com/read/372391/9512060

h c4-3.h

// c4-3.h 串的块链存储表示 #define CHUNKSIZE 4 // 可由用户定义的块大小 struct Chunk { char ch[CHUNKSIZE]; Chunk *next; }; struct LString { Chunk *head,*tail; // 串的头和尾指针 int curlen; // 串的当前长
www.eeworm.com/read/366495/9811683

h c4-3.h

// c4-3.h 串的块链存储表示 #define CHUNKSIZE 4 // 可由用户定义的块大小 struct Chunk { char ch[CHUNKSIZE]; Chunk *next; }; struct LString { Chunk *head,*tail; // 串的头和尾指针 int curlen; // 串的当前长
www.eeworm.com/read/166053/10039252

c bo3-2.c

/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */ Status InitQueue(LinkQueue *Q) { /* 构造一个空队列Q */ (*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode)); if(!(*Q).front) exit(OVERFLOW); (
www.eeworm.com/read/164657/10098706

makefile

CPU = ARMARCH4 /* 目标板的CPU体系结构 */ TOOL = gnu /* 编译工具链 */ EXTRA_DEFINE = -Wcomment -DCPU_7TDMI -DARMMMU=ARMMMU_NONE -DARMCACHE=ARMCACHE_KS32C /* 附加的编译选项 */ TGT_DIR = $(WIND_BASE)/targ
www.eeworm.com/read/425971/10299780

h c4-3.h

// c4-3.h 串的块链存储表示 #define CHUNKSIZE 4 // 可由用户定义的块大小 struct Chunk { char ch[CHUNKSIZE]; Chunk *next; }; struct LString { Chunk *head,*tail; // 串的头和尾指针 int curlen; // 串的当前长
www.eeworm.com/read/425971/10300552

c bo3-2.c

/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */ Status InitQueue(LinkQueue *Q) { /* 构造一个空队列Q */ (*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode)); if(!(*Q).front) exit(OVERFLOW); (
www.eeworm.com/read/161115/10448130

makefile

CPU = ARMARCH4 /* 目标板的CPU体系结构 */ TOOL = gnu /* 编译工具链 */ EXTRA_DEFINE = -Wcomment -DCPU_7TDMI -DARMMMU=ARMMMU_NONE -DARMCACHE=ARMCACHE_KS32C /* 附加的编译选项 */ TGT_DIR = $(WIND_BASE)/targ
www.eeworm.com/read/352747/10519631

c bo3-2.c

/* bo3-2.c 链队列(存储结构由c3-2.h定义)的基本操作(9个) */ void InitQueue(LinkQueue *Q) { /* 构造一个空队列Q */ (*Q).front=(*Q).rear=(QueuePtr)malloc(sizeof(QNode)); if(!(*Q).front) exit(OVERFLOW); (*Q
www.eeworm.com/read/423304/10571777

h c4-3.h

// c4-3.h 串的块链存储表示 #define CHUNKSIZE 4 // 可由用户定义的块大小 struct Chunk { char ch[CHUNKSIZE]; Chunk *next; }; struct LString { Chunk *head,*tail; // 串的头和尾指针 int curlen; // 串的当前长