btest.h

来自「ICS 课程的Lab1」· C头文件 代码 · 共 44 行

H
44
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?