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