]> git.mdlowis.com Git - projs/alib.git/commitdiff
Renamed util to stdc to better reflect it's purpose
authorMike Lowis <mike.lowis@gentex.com>
Thu, 28 Jul 2016 14:47:02 +0000 (10:47 -0400)
committerMike Lowis <mike.lowis@gentex.com>
Thu, 28 Jul 2016 14:47:02 +0000 (10:47 -0400)
source/stdc.h [moved from source/util.h with 100% similarity]
tests/bstree.c
tests/hash.c
tests/main.c
tests/slist.c
tests/utf8.c

similarity index 100%
rename from source/util.h
rename to source/stdc.h
index b94f10c15ab298c7643a9c6363b4dc1ebd01ab5f..f0ab6319144b1af36fc441d423c57124a6eb643a 100644 (file)
@@ -2,7 +2,7 @@
 #include "atf.h"
 
 // File To Test
-#include <util.h>
+#include <stdc.h>
 #include <bstree.h>
 
 typedef struct {
index cd280ca37184625c8ff3b6d5d0cf429114438dae..f47c4a3ffb6eff5d70a28ee4bf32f3e4a716d54d 100644 (file)
@@ -2,7 +2,7 @@
 #include "atf.h"
 
 // File To Test
-#include <util.h>
+#include <stdc.h>
 #include <hash.h>
 
 static const uint Num_Iterations = 1000000;
index f2109f6030b3ce558f0fa60665f7d6f76b16c91b..4e941c460a446c797e008087562852175a92af4b 100644 (file)
@@ -1,8 +1,6 @@
 #include "atf.h"
-#include <util.h>
+#include <stdc.h>
 #include <time.h>
-#include <stdio.h>
-#include <stdlib.h>
 
 int main(int argc, char** argv)
 {
index 52f13f8c7ecf84398720c3b44ff95972beb3d724..cf5ce9eb65db8f237aaae710d5fd50a0684d2179 100644 (file)
@@ -2,6 +2,7 @@
 #include "atf.h"
 
 // File To Test
+#include <stdc.h>
 #include <slist.h>
 
 //-----------------------------------------------------------------------------
index 7dd6bea184917503dba4537a0bd853e1f34d29c3..fe936ef363eef1cb78e13a0e39601007e6a64f29 100644 (file)
@@ -1,8 +1,8 @@
 // Unit Test Framework Includes
 #include "atf.h"
-#include <util.h>
 
 // File To Test
+#include <stdc.h>
 #include <utf8.h>
 
 static bool is_rejected(char* seq) {