summaryrefslogtreecommitdiff
path: root/stm/lexerfatfs.h
blob: f1fe5ad48517be4733bea10b9a3bf32317066d94 (plain)
1
2
3
4
5
6
7
8
typedef struct _mp_lexer_file_buf_t {
    FIL fp;
    char buf[20];
    uint16_t len;
    uint16_t pos;
} mp_lexer_file_buf_t;

mp_lexer_t *mp_lexer_new_from_file(const char *filename, mp_lexer_file_buf_t *fb);