1 
2 // main.h
3 
4 #ifndef MAIN_H
5 #define MAIN_H
6 
7 // includes
8 
9 #include "util.h"
10 
11 // functions
12 
13 extern void quit ();
14 extern void polyglot_set_option(const char *name, const char *value);
15 
16 #endif // !defined MAIN_H
17 
18 // end of main.h
19 
20