mirror of
https://github.com/pellepl/spiffs.git
synced 2025-05-17 07:16:10 +08:00

Mounts a filesystem backed by a filesystem file-like or a list-of-chars. Individual files follow Python's file-like-object protocol. Tested with Python 2.7.
9 lines
158 B
C
9 lines
158 B
C
#include <stdint.h>
|
|
|
|
typedef int32_t s32_t;
|
|
typedef uint32_t u32_t;
|
|
typedef int16_t s16_t;
|
|
typedef uint16_t u16_t;
|
|
typedef int8_t s8_t;
|
|
typedef uint8_t u8_t;
|