?? stack8b.h
字號:
/* stack8b.h: Declarations for a stack of ints */
#define STK_ERROR -32767
/* Incomplete type */
typedef struct Stack Stack;
Stack* stk_create(int);
void stk_push(Stack*, int);
int stk_pop(Stack*);
int stk_top(Stack*);
int stk_size(Stack*);
int stk_error(Stack*);
void stk_destroy(Stack*);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -