📄 btest.h
字号:
/* * CS:APP Data Lab *//* * Students work in teams of one or two. Teams enter their team name, * personal names and login IDs in a struct of this * type in their bits.c file. */typedef struct { char *teamname; /* "ID1+ID2" (two-person team) or "ID" (one-person team) */ char *name1; char *id1; char *name2; char *id2;} team_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 + -