include dir

This commit is contained in:
2020-06-22 14:15:16 +02:00
parent 17acd637a6
commit 7f81bd361e
3 changed files with 1 additions and 1 deletions

5
include/array.h Normal file
View File

@ -0,0 +1,5 @@
#ifndef array_h
#define array_h
void* acl_arraylist_create(size_t array_size, size_t sizeof_one_element);
void* acl_arraylist_append(void *arraylist_void, void *element_void);
#endif

5
include/file.h Normal file
View File

@ -0,0 +1,5 @@
#ifndef acl_file_h
#define acl_file_h
#include <stdbool.h>
char* acl_ReadFileString(char *filePath, bool *sucess);
#endif