Merge commit 'f41cba863448c6c18649077f7c3e82d23587149c'
This commit is contained in:
@ -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
|
||||
|
||||
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user