summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2024-03-11 01:34:22 -0500
committerzachir <zachir@librem.one>2024-03-11 01:34:22 -0500
commit2b135d87f5c1f1f307984f5fd78e151f5ee99dae (patch)
tree6e9e089326ea40badd6dab25a3ed5a7cef61dcbd /main.h
parent42b5d719a0207a56b482a4e0298d72b628b93fa0 (diff)
Replace build system with zig
Zig is actually handling the building and such, now the Makefile is here just as a wrapper for it.
Diffstat (limited to 'main.h')
-rw-r--r--main.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/main.h b/main.h
deleted file mode 100644
index d6d758e..0000000
--- a/main.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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_