a6e926cb8330493422b2eeaf2d0c8bdbda37990f
[cgds.git] / test / main.c
1 #include <stdlib.h>
2
3 int main(int argc, char** argv)
4 {
5 //file ./t.Vector.c :
6 void t_vector_clear();
7 void t_vector_size();
8 void t_vector_push_pop_basic();
9 void t_vector_push_pop_evolved();
10 void t_vector_copy();
11
12 //file ./t.BufferTop.c :
13 void t_buffertop_clear();
14 void t_buffertop_size();
15 void t_buffertop_push_pop_basic();
16 void t_buffertop_push_pop_evolved();
17 void t_buffertop_copy();
18
19 //file ./t.Tree.c :
20 void t_tree_clear();
21 void t_tree_size();
22 void t_tree_add_remove();
23 void t_tree_iterate();
24 void t_tree_copy();
25
26 //file ./t.Heap.c :
27 void t_heap_clear();
28 void t_heap_size();
29 void t_heap_push_pop_basic();
30 void t_heap_push_pop_evolved();
31 void t_heap_copy();
32
33 //file ./t.List.c :
34 void t_list_clear();
35 void t_list_size();
36 void t_list_push_pop_basic();
37 void t_list_push_pop_evolved();
38 void t_list_copy();
39
40 //file ./t.Queue.c :
41 void t_queue_clear();
42 void t_queue_size();
43 void t_queue_push_pop_basic();
44 void t_queue_push_pop_evolved();
45 void t_queue_copy();
46
47 //file ./t.Stack.c :
48 void t_stack_clear();
49 void t_stack_size();
50 void t_stack_push_pop_basic();
51 void t_stack_push_pop_evolved();
52 void t_stack_copy();
53
54 //file ./t.PriorityQueue.c :
55 void t_priorityqueue_clear();
56 void t_priorityqueue_size();
57 void t_priorityqueue_push_pop_basic();
58 void t_priorityqueue_push_pop_evolved();
59 void t_priorityqueue_copy();
60
61 return 0;
62 }