spiffs_typedefs.h 318 B

1234567891011121314
  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. typedef long long ptrdiff_t;
  12. #define offsetof(type, member) __builtin_offsetof (type, member)