You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
211 B
8 lines
211 B
typedef struct _py_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);
|
|
|