check_list.h
来自「一个单元测试框架,主要和应用文件一起编译运行」· C头文件 代码 · 共 39 行
H
39 行
#ifndef CHECK_LIST_H#define CHECK_LIST_Htypedef struct List List;/* Create an empty list */List * list_create (void);/* Is list at end? */int list_at_end (List * lp);/* Position list at front */void list_front(List *lp);/* Add a value to the front of the list, positioning newly added value as current value. More expensive than list_add_end, as it uses memmove. */void list_add_front (List *lp, const void *val);/* Add a value to the end of the list, positioning newly added value as current value */void list_add_end (List *lp, const void *val);/* Give the value of the current node */void *list_val (List * lp);/* Position the list at the next node */void list_advance (List * lp);/* Free a list, but don't free values */void list_free (List * lp);void list_apply (List *lp, void (*fp) (void *));#endif /* CHECK_LIST_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?