summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'string.c')
-rw-r--r--string.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/string.c b/string.c
new file mode 100644
index 0000000..86a270c
--- /dev/null
+++ b/string.c
@@ -0,0 +1,13 @@
+#include <string.h>
+#include "test.h"
+
+void test_string_h(void)
+{
+ size_t size;
+
+ testing_header("string.h");
+
+ test_true(NULL == 0);
+
+ testing_end();
+}