From 2b135d87f5c1f1f307984f5fd78e151f5ee99dae Mon Sep 17 00:00:00 2001 From: zachir Date: Mon, 11 Mar 2024 01:34:22 -0500 Subject: Replace build system with zig Zig is actually handling the building and such, now the Makefile is here just as a wrapper for it. --- include/main.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 include/main.h (limited to 'include') 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 +#include +#include +#include +#include + +#include +#include + +#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_ -- cgit v1.2.3