sequence.h

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

H
24
字号
/* $Header: /xtel/isode/isode/others/quipu/uips/doog/query/RCS/sequence.h,v 9.0 1992/06/16 12:45:27 isode Rel $ */#ifndef _query_sequence_h_#define _query_sequence_h_#include "types.h"typedef struct _string_cell{  char *string;  struct _string_cell *next;} string_cell, *stringCell, *stringList;#define NULLStrCell (stringCell) NULL#define cell_alloc() (stringCell) smalloc(sizeof(string_cell))void add_string_to_seq(),     delete_from_seq(),     free_string_seq();stringCell copy_string_seq();#endif _query_sequence_h_

⌨️ 快捷键说明

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