From f41cba863448c6c18649077f7c3e82d23587149c Mon Sep 17 00:00:00 2001 From: MrGeorgen Date: Mon, 22 Jun 2020 19:19:23 +0200 Subject: [PATCH] Squashed 'lib/advanced_C_standard_liberary/' changes from 68f0bb5..59accca 59accca ReadTextFile renamed git-subtree-dir: lib/advanced_C_standard_liberary git-subtree-split: 59acccac883425c4d25158a26c2c126ccb4bff05 --- 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;