?? list.h
字號:
//零樹結構的定義
#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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -