Squashed 'lib/advanced_C_standard_liberary/' changes from cea7d71..cf9856d

cf9856d fixed file.h

git-subtree-dir: lib/advanced_C_standard_liberary
git-subtree-split: cf9856d0614a5a4ac4b27c1f5b615a9fb0fb4d0e
This commit is contained in:
2020-06-24 21:52:32 +02:00
parent b873d87511
commit 2a9a9273e3

View File

@ -1,5 +1,5 @@
#ifndef acl_file_h
#define acl_file_h
#include <stdbool.h>
char* acl_ReadTextFile(char *filePath, bool *sucess);
char* acl_ReadTextFile(const char *filePath, bool *sucess);
#endif