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

cea7d71 acl_ReadTextFile takes now a const char *filePath as argument
59740ea fixed acl_ReadtextFile

git-subtree-dir: lib/advanced_C_standard_liberary
git-subtree-split: cea7d71b8c9379347770153ab5b7643cbdf7601d
This commit is contained in:
2020-06-24 21:48:10 +02:00
parent cfb9251890
commit b873d87511

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;
}