list.h
来自「EZW举例 该源代码包含有6个文件: EZW.H - EZW编码器头文件」· C头文件 代码 · 共 30 行
H
30 行
//零树结构的定义
#ifndef __LIST_H__
#define __LIST_H__
/*
* list_type = integer;
*/
typedef struct {
int x;
int y;
} list_type;
extern int list_length;
void append_to_list(list_type d);
void destroy_list(void);
void display_list(void);
list_type get_list_element(int pos, char *found);
void put_list_element(list_type d, int pos, char *found);
void reset_list(void);
list_type get_next_list_element(char *found);
void write_list_info(void);
void initialize_list(void);
#endif __LIST_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?