?? item.h
字號(hào):
//item.h - header file for item and key definition.#include <stdio.h>#ifndef _ITEM_H#define _ITEM_Htypedef struct { int num; char name[30];} workerRec;typedef workerRec Item;typedef int Key;typedef int BOOL;#define EQ(key1, key2) (((key1) > (key2)) - ((key1) < (key2)))
// here can the user change the Equal parameter
// then when he want check EQ() with two strings or
// anything other.
#define ZERO 0#define ZERO_SMALLER (-1)
#define ZERO_GREATER 1
#define ERROR() fprintf(stderr, "Error...\n");#endif //_ITEM_H
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -