28 lines
251 B
C
28 lines
251 B
C
|
|
#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
|