摘要:
list.c /* *把数据结构封装 * 支持变长结构体:在网络传输的过程,包的大小不固定的情况适用 *实现create , delete ,insert , find , fetch等功能 */ #include <stdio.h> #include <stdlib.h> #include <st 阅读全文
摘要:
list.h #ifndef LIST_H__ #define LIST_H__ //插入模式 #define LLIST_FORWARD 1 #define LLIST_BACKWARD 2 //回调函数 typedef void llist_op(const void *) ; typedef 阅读全文