diff --git a/include/common.h b/include/common.h index 1c8841f..9ef188e 100644 --- a/include/common.h +++ b/include/common.h @@ -1,4 +1,13 @@ - +/** + * @file common.h + * @author wenjf (Orig5826@163.com) + * @brief + * @version 0.1 + * @date 2024-07-03 + * + * @copyright Copyright (c) 2024 + * + */ #ifndef _COMMON_H_ #define _COMMON_H_ diff --git a/test/test.c b/test/test.c index 095eb3f..6dadbeb 100644 --- a/test/test.c +++ b/test/test.c @@ -49,11 +49,13 @@ int main() printf("----- unicstl test -----\n"); // while (1) { - // test_list(); - // test_stack(); + test_list(); + test_stack(); test_deque(); - // test_queue(); - // test_tree(); + test_queue(); + test_tree(); } + + printf("----- unicstl ok -----\n"); return 0; }