protoverse

A metaverse protocol
git clone git://jb55.com/protoverse
Log | Files | Refs | README | LICENSE

typedefs.h (243B)


      1 
      2 #ifndef PROTOVERSE_TYPEDEFS_H
      3 #define PROTOVERSE_TYPEDEFS_H
      4 
      5 #include <stdint.h>
      6 
      7 typedef unsigned char u8;
      8 typedef unsigned int u32;
      9 typedef unsigned short u16;
     10 typedef uint64_t u64;
     11 typedef int64_t s64;
     12 
     13 
     14 #endif /* PROTOVERSE_TYPEDEFS_H */