Reworked the building process

This commit is contained in:
Tomas Rivera
2026-04-13 17:59:37 +02:00
parent 112756f3e1
commit 74566df6d0
8 changed files with 107 additions and 49 deletions
+2
View File
@@ -54,6 +54,8 @@ void _error(const int shouldDebug, const int condition, const char *type, const
// Returns 0 if the string is not in the array.
// If you want to only check the first n elements of the array, pass n as len.
int isStringInArray(const char *string, const char **array, const int len);
// initialize the cache directory and creates (if it doesn't already exists) the config file
void initAppFilesAndDirs(const char *home, const int shouldDebug);
// returns 1 if the string is in the file.
// returns 0 if the string is not in the file.
int isStringInFile(const char *path, const char *string, const int shouldDebug);