全功能测试ok

This commit is contained in:
建峰 2024-07-03 15:27:42 +08:00
parent 7c1c811ea1
commit b4cb7f7a3d
2 changed files with 16 additions and 5 deletions

View File

@ -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_

View File

@ -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;
}