Initial commit
This commit is contained in:
28
source/include.h
Normal file
28
source/include.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef _include
|
||||
|
||||
#define _include
|
||||
|
||||
#include "index.h"
|
||||
|
||||
#include "array.h"
|
||||
|
||||
#include "string.h"
|
||||
|
||||
#include "tools.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
struct include{
|
||||
|
||||
char * path;
|
||||
|
||||
bool enabled;
|
||||
|
||||
};
|
||||
|
||||
struct include * include_new();
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user