1 /** 2 * @file mySList.h 3 * @brief 顺序表头文件 4 * @details 定义了函数返类型status及对应的返回值状态标记宏常量 5 * @details 定义了操作函数类型:myOpFunType 6 * @details 定义了元素类型etype 7 * @details 定义了顺序表结构体mySList,及顺序表常用函数的实现 8 */ 9 10 #ifndef __mySList_H__ 11 #define __mySList_H__ 12 13 #define _CRT_SECURE_NO_WARNINGS 14 #include<cstdio> 15 #include<cstdlib> 16 #include<cstring> 17 #include<cassert> 18 19 // 头文件代码及注释 20 21 #endif // !__mySList_H__
/** * @file mySList.h * @brief 顺序表头文件 * @details 定义了函数返类型status及对应的返回值状态标记宏常量 * @details 定义了操作函数类型:myOpFunType * @details 定义了元素类型etype * @details 定义了顺序表结构体mySList,及顺序表常用函数的实现 */ #ifndef __mySList_H__ #define __mySList_H__ #define _CRT_SECURE_NO_WARNINGS #include<cstdio> #include<cstdlib> #include<cstring> #include<cassert> // 头文件代码及注释 #endif // !__mySList_H__
标签:__,顺序,定义,文件格式,details,mySList,kx000001,include From: https://www.cnblogs.com/kxwslmsps/p/16937235.html