From 59acccac883425c4d25158a26c2c126ccb4bff05 Mon Sep 17 00:00:00 2001 From: MrGeorgen Date: Mon, 22 Jun 2020 19:18:35 +0200 Subject: [PATCH] ReadTextFile renamed --- include/file.h | 2 +- src/file.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/file.h b/include/file.h index b098a62..710a4ed 100644 --- a/include/file.h +++ b/include/file.h @@ -1,5 +1,5 @@ #ifndef acl_file_h #define acl_file_h #include -char* acl_ReadFileString(char *filePath, bool *sucess); +char* acl_ReadTextFile(char *filePath, bool *sucess); #endif diff --git a/src/file.c b/src/file.c index 170cf84..3c470e9 100644 --- a/src/file.c +++ b/src/file.c @@ -1,7 +1,7 @@ #include #include #include -char* acl_ReadFileString(char *filePath, bool *sucess){ +char* acl_ReadTextFile(char *filePath, bool *sucess){ FILE *fp = fopen(filePath, "rb"); size_t lSize; char *buffer;