blob: eb2052494175070123b73d4d0080dcc48e4be5c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef ENGINE_REPL_H
#define ENGINE_REPL_H
typedef struct node node;
struct node
{
};
typedef struct btree btree;
struct btree
{
};
#endif /* ENGINE_H */
|