spiffs_typedefs.h 372 B

12345678910111213141516
  1. #include <stdint.h>
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include <string.h>
  5. typedef int32_t s32_t;
  6. typedef uint32_t u32_t;
  7. typedef int16_t s16_t;
  8. typedef uint16_t u16_t;
  9. typedef int8_t s8_t;
  10. typedef uint8_t u8_t;
  11. #if !defined(__CYGWIN__) && !defined(_MSC_VER)
  12. typedef long long ptrdiff_t;
  13. #define offsetof(type, member) __builtin_offsetof (type, member)
  14. #endif