tbm-mcu/source/fs/mufs/dir.h

13 lines
201 B
C
Raw Normal View History

2017-06-09 14:38:31 +02:00
#pragma once
struct mufs_dentry {
uint8_t type;
uint32_t file_size;
uint32_t root;
uint8_t depth;
uint16_t path_len;
} __attribute__((packed));
#define MUFS_FILE BIT(0)
#define MUFS_DIR BIT(1)