diff options
Diffstat (limited to 'extmod/vfs_fat_lexer.c')
-rw-r--r-- | extmod/vfs_fat_lexer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extmod/vfs_fat_lexer.c b/extmod/vfs_fat_lexer.c index f83bfb3fbf..91acdb830d 100644 --- a/extmod/vfs_fat_lexer.c +++ b/extmod/vfs_fat_lexer.c @@ -61,6 +61,8 @@ STATIC void file_buf_close(mp_lexer_file_buf_t *fb) { m_del_obj(mp_lexer_file_buf_t, fb); } +mp_lexer_t *fat_vfs_lexer_new_from_file(const char *filename); + mp_lexer_t *fat_vfs_lexer_new_from_file(const char *filename) { mp_lexer_file_buf_t *fb = m_new_obj_maybe(mp_lexer_file_buf_t); if (fb == NULL) { |