aboutsummaryrefslogtreecommitdiff
path: root/src/Version
diff options
context:
space:
mode:
Diffstat (limited to 'src/Version')
-rw-r--r--src/Version/Version.c3
-rw-r--r--src/Version/Version.h6
2 files changed, 9 insertions, 0 deletions
diff --git a/src/Version/Version.c b/src/Version/Version.c
new file mode 100644
index 0000000..4f4a1ea
--- /dev/null
+++ b/src/Version/Version.c
@@ -0,0 +1,3 @@
+#include "Version/Version.h"
+
+const char yapssg_version[] = "0.1.0";
diff --git a/src/Version/Version.h b/src/Version/Version.h
new file mode 100644
index 0000000..f17b243
--- /dev/null
+++ b/src/Version/Version.h
@@ -0,0 +1,6 @@
+#ifndef YAPSSG_VERSION_H
+#define YAPSSG_VERSION_H
+
+extern const char yapssg_version[];
+
+#endif