blob: 8b2fa1fe2a5c8df13681a5b958f420e0a80b8598 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef __COMPILER_H_
#define __COMPILER_H_
#include <stdlib.h>
typedef char *string;
string compile_line(string line, size_t size_of_line, string line_or_source);
#endif // __COMPILER_H_
|