klisp

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

ksystem.h (307B)


      1 /*
      2 ** ksystem.h
      3 ** Platform dependent functionality.
      4 ** See Copyright Notice in klisp.h
      5 */
      6 
      7 #ifndef ksystem_h
      8 #define ksystem_h
      9 
     10 #include "kobject.h"
     11 
     12 TValue ksystem_current_jiffy(klisp_State *K);
     13 TValue ksystem_jiffies_per_second(klisp_State *K);
     14 bool ksystem_isatty(klisp_State *K, TValue port);
     15 
     16 #endif
     17