macros for function declartion

This commit is contained in:
2020-08-02 15:43:52 +02:00
parent 14009a6e25
commit b141b10f70
6 changed files with 37 additions and 23 deletions

View File

@ -1,5 +1,6 @@
#ifndef _acl_file_h
#define _acl_file_h
#include <stdbool.h>
char* acl_ReadTextFile(const char *filePath, bool *sucess);
#define acl_ReadTextFile_d char* acl_ReadTextFile(const char *filePath, bool *sucess)
acl_ReadTextFile_d;
#endif