mirror of
https://gitee.com/apaki/unicstl.git
synced 2025-05-18 03:51:35 +08:00
19 lines
212 B
C
19 lines
212 B
C
|
|
#include "test.h"
|
|
|
|
int main()
|
|
{
|
|
printf("----- unicstl -----\n");
|
|
// while (1)
|
|
{
|
|
// list_test();
|
|
// stack_test();
|
|
deque_test();
|
|
|
|
// queue_test();
|
|
// tree_test();
|
|
// rbtree_test();
|
|
}
|
|
return 0;
|
|
}
|