Initial commit

This commit is contained in:
Ur Mom 2024-05-14 21:55:42 +02:00
parent 730248595e
commit 20ef894f88
1 changed files with 8 additions and 0 deletions

View File

@ -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.
*