klisp

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

kgenv_mut.h (330B)


      1 /*
      2 ** kgenv_mut.h
      3 ** Environment mutation features for the ground environment
      4 ** See Copyright Notice in klisp.h
      5 */
      6 
      7 #ifndef kgenv_mut_h
      8 #define kgenv_mut_h
      9 
     10 #include "kstate.h"
     11 
     12 /* init ground */
     13 void kinit_env_mut_ground_env(klisp_State *K);
     14 /* init continuation names */
     15 void kinit_env_mut_cont_names(klisp_State *K);
     16 
     17 
     18 #endif