240 私信
这个人很懒,暂无签名信息
0

VxWorks下使用双向链表lstLib的小例子

#include #include #include typedef struct _Queue{ NODE * next; NODE * prev; int age; char name[255];} QUEUE;LIST list;void TestList(){    QUEUE *p;    int i;    lstLibInit();    lstInit(&list);    for...

个人介绍
暂无介绍