?? btest.h
字號:
/* * CS:APP Data Lab *//* * Students enter their personal names and login IDs in a struct of * this type in their bits.c file. */typedef struct { char *name; char *id;} info_struct;/* Declare different function types */typedef int (*funct_t) (void);typedef int (*funct1_t)(int);typedef int (*funct2_t)(int, int); typedef int (*funct3_t)(int, int, int); /* Combine all the information about a function and its tests as structure */typedef struct { char *name; funct_t solution_funct; /* These will typically be casted */ funct_t test_funct; int args; char *ops; int op_limit; int rating; int arg_ranges[3][2]; /* Min & Max values for each argument */} test_rec, *test_ptr;extern test_rec test_set[];
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -