attrt_list.h

来自「ftam等标准协议服务器和客户端的源代码。」· C头文件 代码 · 共 29 行

H
29
字号
#ifndef _query_attr_type_list_h_#define _query_attr_type_list_h_#include "types.h"#include "quipu/attr.h"/* *	Storage cell for a list of AttributeTypes */typedef struct _attr_type_cell{  AttributeType type;  struct _attr_type_cell *next;} attr_type_cell, *attrTypeList;#define NULLAttrTypeList (attrTypeList) NULL#define at_cell_alloc() (attrTypeList) smalloc(sizeof(attr_type_cell))/* *	Procs */QBool add_type_to_list(), delete_type_from_list();void free_at_list();#endif 

⌨️ 快捷键说明

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