adb.h
来自「linux thread programe」· C头文件 代码 · 共 37 行
H
37 行
/* adb.h * * Created by Brad Nichols, 10/10/93 * * Include file for database module of example atm program. */#define MAX_NUM_ACCOUNTS 240 #define CPU_LOOP_SIZE 325000typedef struct { int id; int password; int balance; int inuse;} account_t;void init_account_db(int, int, int);int new_account(int *, account_t **);int retrieve_account(int, account_t **);int store_account(account_t *);int return_account(account_t *);int delete_account(account_t *);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?