⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list.h

📁 NBT scanner utlities
💻 H
字号:
#define ERROR 12345struct list_item {	struct list_item* next;	struct list_item* prev;	unsigned long content;};struct list {	struct list_item* head;};struct list* new_list(); struct list_item* new_list_item(unsigned long content);void delete_list(struct list* list);	int compare(struct list_item* item1, struct list_item* item2);int insert(struct list* lst, unsigned long content);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -