Update acl

This commit is contained in:
2020-06-24 21:48:10 +02:00

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;
@ -20,9 +20,6 @@ char* acl_ReadTextFile(char *filePath, bool *sucess){
}
size_t readReturn = fread(buffer, lSize, 1, fp);
fclose(fp);
if(readReturn != 1) {
*sucess = false;
}
*sucess = true;
*sucess = readReturn == 1;
return buffer;
}