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

📄 items.h

📁 我搜集到的一个java常用类库的源代码
💻 H
字号:
//ecnegrevid 2001.7.20#ifndef items_h#define items_hstruct item {	char name[50];	int value;};struct items {	int n;	int max;	struct item *item;};struct items* creatitems(int max);void freeitems(struct items *items);int readitems(struct items *items, const char *filename);int saveitems(struct items *items, const char *filename);void additem(struct items *items, const char *name, int value);int readvalue(struct items *items, const char *name, int *value);int additemf(const char *filename, int max, const char *name, int value);int readvaluef(const char *filename, int max, const char *name, int *value);#endif

⌨️ 快捷键说明

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