set02.h

来自「db.* (pronounced dee-be star) is an adva」· C头文件 代码 · 共 41 行

H
41
字号
/****************************************************************************** * * db.*  * Test Suite * * Database Manipulation Tests * *****************************************************************************/#ifndef SET02_H#define SET02_H#include "db.star.h"/* Function to run all tests in this subset.  */void set02_tests();/* TESTS *//* Data type write/read tests */bool test_wr_int(DB_TASK *);bool test_wr_short(DB_TASK *);bool test_wr_long(DB_TASK *);bool test_wr_char(DB_TASK *);bool test_wr_float(DB_TASK *);bool test_wr_double(DB_TASK *);bool test_wr_db_addr(DB_TASK *);/* Data type update tests */bool test_update_int(DB_TASK *);bool test_update_short(DB_TASK *);bool test_update_long(DB_TASK *);bool test_update_char(DB_TASK *);bool test_update_float(DB_TASK *);bool test_update_double(DB_TASK *);bool test_update_db_addr(DB_TASK *);/* Data type delete test */bool test_delete_rec(DB_TASK *);#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?