acl_ReadTextFile takes now a const char *filePath as argument
This commit is contained in:
@ -1,7 +1,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
char* acl_ReadTextFile(char *filePath, bool *sucess){
|
char* acl_ReadTextFile(const char *filePath, bool *sucess){
|
||||||
FILE *fp = fopen(filePath, "rb");
|
FILE *fp = fopen(filePath, "rb");
|
||||||
size_t lSize;
|
size_t lSize;
|
||||||
char *buffer;
|
char *buffer;
|
||||||
|
|||||||
Reference in New Issue
Block a user