?? fifo.h
字號:
//先入現出結構定義
#ifndef __FIFO_H__
#define __FIFO_H__
typedef struct __ezw_element {
int x;
int y;
int code;
} ezw_element;
extern char fifo_empty;
void put_in_fifo(ezw_element d);
ezw_element get_from_fifo(void);
void destroy_fifo(void);
void initialize_fifo(void);
#endif /* __FIFO_H__ */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -