summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2019-06-16 13:53:13 -0700
committerNick Van Doorn <vandoorn.nick@gmail.com>2019-06-16 13:53:13 -0700
commit85c38f38778d3c8ab6a8dc9517a763e010c4dc6d (patch)
treeb6f417baf852cb90e92809ca57a72640f7661252
parent4a8862c6af1bf17222808dafb71ef07804add537 (diff)
Generate templates for core and database
-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