📄 check_list.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -