list.h
来自「花了很长时间找了这么多c语言的编译器」· C头文件 代码 · 共 14 行
H
14 行
#ifndef _LIST_H
#define _LIST_H
/*
* Linked list type. Used for filenames, module number list, segment lists
*/
typedef struct _list_ {
struct _list_ *link; /* Link to next element */
void *data; /* Generic data */
} LIST;
#include "list.p"
#endif /* _LIST_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?