1 #ifndef ML_CONSOLE_H
2 #define ML_CONSOLE_H
3 
4 #include "minilang.h"
5 
6 #ifdef	__cplusplus
7 extern "C" {
8 #endif
9 
10 void ml_console(ml_context_t *Context, ml_getter_t GlobalGet, void *Globals, const char *DefaultPrompt, const char *ContinuePrompt);
11 
12 #ifdef	__cplusplus
13 }
14 #endif
15 
16 #endif
17