Introduce some common type aliases that can be used.
They are put in a separate file because using them requires at least importing stdint.h and either stdlib.h or stddef.h.
LDR7IHR2F7LFIJO2DA6VRXSBZJRZNCLKH52MTL2XNFOPPNT37GVAC #ifndef ANI_TYPES_H#define ANI_TYPES_H/*** Simple typedefs for commonly used numeric types. Requires stdint.h* and stddef.h*/typedef uint8_t u8;typedef uint16_t u16;typedef uint32_t u32;typedef uint64_t u64;typedef size_t usize;typedef off_t size;#endif