summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core.c6
-rw-r--r--core.h10
-rw-r--r--core.test.c8
-rw-r--r--core.test.h10
-rw-r--r--database.c6
-rw-r--r--database.h10
-rw-r--r--database.test.c8
-rw-r--r--database.test.h10
8 files changed, 68 insertions, 0 deletions
diff --git a/core.c b/core.c
new file mode 100644
index 0000000..6423f06
--- /dev/null
+++ b/core.c
@@ -0,0 +1,6 @@
+
+#include "core.h"
+
+#include <stdlib.h>
+#include <stdio.h>
+
diff --git a/core.h b/core.h
new file mode 100644
index 0000000..52f65ad
--- /dev/null
+++ b/core.h
@@ -0,0 +1,10 @@
+
+#ifndef GITROLEX_CORE_H
+#define GITROLEX_CORE_H
+
+
+#include <stdlib.h>
+#include <stdio.h>
+
+
+#endif
diff --git a/core.test.c b/core.test.c
new file mode 100644
index 0000000..feb43b1
--- /dev/null
+++ b/core.test.c
@@ -0,0 +1,8 @@
+
+#include "test-lib.h"
+#include "core.h"
+
+
+#include <stdlib.h>
+#include <stdio.h>
+
diff --git a/core.test.h b/core.test.h
new file mode 100644
index 0000000..e4b380d
--- /dev/null
+++ b/core.test.h
@@ -0,0 +1,10 @@
+
+#ifndef GITROLEX_CORE_H_TEST
+#define GITROLEX_CORE_H_TEST
+
+
+#include <stdlib.h>
+#include <stdio.h>
+
+
+#endif
diff --git a/database.c b/database.c
new file mode 100644
index 0000000..5908069
--- /dev/null
+++ b/database.c
@@ -0,0 +1,6 @@
+
+#include "database.h"
+
+#include <stdlib.h>
+#include <stdio.h>
+
diff --git a/database.h b/database.h
new file mode 100644
index 0000000..c297872
--- /dev/null
+++ b/database.h
@@ -0,0 +1,10 @@
+
+#ifndef GITROLEX_DATABASE_H
+#define GITROLEX_DATABASE_H
+
+
+#include <stdlib.h>
+#include <stdio.h>
+
+
+#endif
diff --git a/database.test.c b/database.test.c
new file mode 100644
index 0000000..28e1a0a
--- /dev/null
+++ b/database.test.c
@@ -0,0 +1,8 @@
+
+#include "test-lib.h"
+#include "database.h"
+
+
+#include <stdlib.h>
+#include <stdio.h>
+
diff --git a/database.test.h b/database.test.h
new file mode 100644
index 0000000..29504d7
--- /dev/null
+++ b/database.test.h
@@ -0,0 +1,10 @@
+
+#ifndef GITROLEX_DATABASE_H_TEST
+#define GITROLEX_DATABASE_H_TEST
+
+
+#include <stdlib.h>
+#include <stdio.h>
+
+
+#endif