klisp

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

kauxlib.h (380B)


      1 /*
      2 ** kauxlib.h
      3 ** Auxiliary functions for klisp
      4 ** See Copyright Notice in klisp.h
      5 */
      6 
      7 /*
      8 ** SOURCE NOTE: this is from lua, but is greatly reduced (for now)
      9 */
     10 
     11 #ifndef kauxlib_h
     12 #define kauxlib_h
     13 
     14 
     15 #include <stddef.h>
     16 #include <stdlib.h>
     17 #include <stdio.h>
     18 
     19 #include "klisp.h"
     20 
     21 /*
     22 ** Create a new state with the default allocator
     23 */
     24 klisp_State *klispL_newstate (void);
     25 
     26 #endif