Merge commit 'f41cba863448c6c18649077f7c3e82d23587149c'

This commit is contained in:
2020-06-22 19:19:24 +02:00
2 changed files with 2 additions and 2 deletions

View File

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

View File

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