From 20ef894f8825f4469c7248127e35d65d0bcd09bc Mon Sep 17 00:00:00 2001 From: Ur Mom Date: Tue, 14 May 2024 21:55:42 +0200 Subject: [PATCH] Initial commit --- src/main.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main.c b/src/main.c index 03ab6b9..70fc423 100644 --- a/src/main.c +++ b/src/main.c @@ -13,6 +13,14 @@ extern FILE *yyin; */ void notify_exit(void) { DEBUG("Exiting gemstone..."); } +size_t check_option(const char* name) { +if (0 != name){ + return 1; +} else { + return 0; +}; +}; + /** * @brief Closes File after compiling. *