Implement HashTable + fix some extra blank spaces, remove Bool type (using bool ...
[cgds.git] / src / Stack.c
index 8aa7800..92457c0 100644 (file)
@@ -27,7 +27,7 @@ Stack* stack_copy(Stack* stack)
        return stackCopy;
 }
 
-Bool stack_empty(Stack* stack)
+bool stack_empty(Stack* stack)
 {
        return vector_empty(stack->array);
 }