acl_ReadTextFile takes now a const char *filePath as argument

This commit is contained in:
2020-06-24 16:42:27 +02:00
parent 59740ea632
commit cea7d71b8c

View File

@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
char* acl_ReadTextFile(char *filePath, bool *sucess){
char* acl_ReadTextFile(const char *filePath, bool *sucess){
FILE *fp = fopen(filePath, "rb");
size_t lSize;
char *buffer;