Compare commits
1 Commits
80fdc07b68
...
a83de1b97b
| Author | SHA1 | Date | |
|---|---|---|---|
| a83de1b97b |
@ -2,5 +2,5 @@
|
|||||||
#define _acl_file_h
|
#define _acl_file_h
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
char* acl_ReadTextFile(const FILE *file, bool *sucess);
|
char* acl_ReadTextFile(FILE *file, bool *sucess);
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -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(const FILE *file, bool *sucess){
|
char* acl_ReadTextFile(FILE *file, bool *sucess){
|
||||||
size_t lSize;
|
size_t lSize;
|
||||||
char *buffer;
|
char *buffer;
|
||||||
if(!file) {
|
if(!file) {
|
||||||
|
|||||||
Reference in New Issue
Block a user