📄 list.h
字号:
#ifndef LIST_H#define LIST_Htypedef struct list *List;struct list { void *x; List link;};List append(void *x, List list);int length(List list);void *ltov(List *list, unsigned a);void listmap(List list, void (*apply)(void *x,void *c1), void *c1);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -