⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 btest.h

📁 LINUX下逻辑运算符的应用
💻 H
字号:
/* * CS:APP Data Lab */typedef struct {  char *name1;  char *id1;} 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 + -