acl_readTextFile uses FILE* now

This commit is contained in:
2020-11-04 20:26:58 +01:00
parent 9cc252d0e6
commit a83de1b97b
2 changed files with 8 additions and 10 deletions

View File

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