summaryrefslogtreecommitdiff
path: root/include/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/main.h')
-rw-r--r--include/main.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/main.h b/include/main.h
new file mode 100644
index 0000000..d6d758e
--- /dev/null
+++ b/include/main.h
@@ -0,0 +1,26 @@
+// Copyright (c) 2024 Zachary Smith
+#ifndef MAIN_H_
+#define MAIN_H_
+
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <assert.h>
+#include <string.h>
+
+#define VERSION "1.0.0"
+
+enum return_t {
+ SUCCESS = 0,
+ ERR
+};
+
+void printhelp(void);
+void printcopyright(void);
+void printversion(void);
+int main(int, char**);
+
+#endif // MAIN_H_