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