types.pxd 376 B

12345678910111213
  1. from libc.stdint cimport int8_t, int16_t, int32_t, int64_t
  2. from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t
  3. cdef extern from "<util/system/types.h>" nogil:
  4. ctypedef int8_t i8
  5. ctypedef int16_t i16
  6. ctypedef int32_t i32
  7. ctypedef int64_t i64
  8. ctypedef uint8_t ui8
  9. ctypedef uint16_t ui16
  10. ctypedef uint32_t ui32
  11. ctypedef uint64_t ui64