From b4cb7f7a3dc259ba43500f1d8dc0976839747c93 Mon Sep 17 00:00:00 2001 From: wjf-hs Date: Wed, 3 Jul 2024 15:27:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=A8=E5=8A=9F=E8=83=BD=E6=B5=8B=E8=AF=95ok?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/common.h | 11 ++++++++++- test/test.c | 10 ++++++---- 2 files changed, 16 insertions(+), 5 deletions(-) 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; }