btest.h

来自「SSD6 练习2的原版正确答案」· C头文件 代码 · 共 40 行

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