klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

keval.h (244B)


      1 /*
      2 ** keval.h
      3 ** klisp eval function
      4 ** See Copyright Notice in klisp.h
      5 */
      6 
      7 #ifndef keval_h
      8 #define keval_h
      9 
     10 #include "kstate.h"
     11 
     12 void keval_ofn(klisp_State *K);
     13 /* init continuation names */
     14 void kinit_eval_cont_names(klisp_State *K);
     15 
     16 #endif