Implement HashTable + fix some extra blank spaces, remove Bool type (using bool ...
[cgds.git] / test / t.Stack.c
index 5b99b4f..3cbaef6 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdlib.h>
 #include "cgds/Stack.h"
-#include "test/helpers.h"
-#include "test/lut.h"
+#include "helpers.h"
+#include "lut.h"
 
 void t_stack_clear()
 {
@@ -44,7 +44,7 @@ void t_stack_push_pop_basic()
        int n = 10;
 
        Stack* s = stack_new(double);
-       for (int i = 0; i < n; i++) 
+       for (int i = 0; i < n; i++)
                stack_push(s, (double) i);
        // iterate and check values
        double ckValue = n - 1;