spl

systems programming language
git clone http://frotz.net/git/spl.git
Log | Files | Refs | README | LICENSE

builtin.type.h (248B)


      1 
      2 #include <stdint.h>
      3 #include <stdbool.h>
      4 
      5 typedef void t$void;
      6 typedef bool t$bool;
      7 
      8 typedef uint32_t t$u32;
      9 typedef int32_t t$i32;
     10 typedef uint16_t t$u16;
     11 typedef int16_t t$i16;
     12 typedef uint8_t t$u8;
     13 typedef int8_t t$i8;
     14 
     15 typedef uint8_t *t$str;