Now using 2 spaces instead of tabs. Fix copyright years. Improve documentation
[cgds.git] / test / main.c
CommitLineData
a7868768
BA
1#include <stdlib.h>
2
3int main(int argc, char** argv)
4{
a7868768 5 //file ./t.Tree.c :
6860e373
BA
6 t_tree_clear();
7 t_tree_size();
8 t_tree_add_remove();
9 t_tree_iterate();
10 t_tree_copy();
a7868768 11
1ff641f9
BA
12 //file ./t.PriorityQueue.c :
13 t_priorityqueue_clear();
14 t_priorityqueue_size();
15 t_priorityqueue_push_pop_basic();
16 t_priorityqueue_push_pop_evolved();
17 t_priorityqueue_copy();
a7868768 18
aef8a996
BA
19 //file ./t.Heap.c :
20 t_heap_clear();
21 t_heap_size();
22 t_heap_push_pop_basic();
23 t_heap_push_pop_evolved();
24 t_heap_copy();
25
1ff641f9
BA
26 //file ./t.List.c :
27 t_list_clear();
28 t_list_size();
29 t_list_push_pop_basic();
30 t_list_push_pop_evolved();
31 t_list_copy();
32
aef8a996
BA
33 //file ./t.BufferTop.c :
34 t_buffertop_clear();
35 t_buffertop_size();
36 t_buffertop_push_pop_basic();
37 t_buffertop_push_pop_evolved();
38 t_buffertop_copy();
8306616e 39
1ff641f9 40 //file ./t.HashTable.c :
e45132ac
BA
41 t_hashtable_clear();
42 t_hashtable_size();
1ff641f9 43 t_hashtable_set_remove_basic();
e45132ac
BA
44 t_hashtable_getnull_modify();
45 t_hashtable_copy();
1ff641f9
BA
46
47 //file ./t.Stack.c :
48 t_stack_clear();
49 t_stack_size();
50 t_stack_push_pop_basic();
51 t_stack_push_pop_evolved();
52 t_stack_copy();
53
54 //file ./t.Queue.c :
55 t_queue_clear();
56 t_queue_size();
57 t_queue_push_pop_basic();
58 t_queue_push_pop_evolved();
59 t_queue_copy();
60
61 //file ./t.Vector.c :
62 t_vector_clear();
63 t_vector_size();
64 t_vector_push_pop_basic();
65 t_vector_push_pop_evolved();
66 t_vector_copy();
a7868768
BA
67
68 return 0;
69}