krepl.h (276B)
1 /* 2 ** krepl.h 3 ** klisp repl 4 ** See Copyright Notice in klisp.h 5 */ 6 7 #ifndef krepl_h 8 #define krepl_h 9 10 #include "klisp.h" 11 #include "kstate.h" 12 #include "kobject.h" 13 14 void kinit_repl(klisp_State *K); 15 /* init continuation names */ 16 void kinit_repl_cont_names(klisp_State *K); 17 18 #endif