2014-01-07 12:49:42 -05:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "misc.h"
|
2014-01-15 01:23:56 -05:00
|
|
|
#include "mpconfig.h"
|
|
|
|
#include "qstr.h"
|
2014-01-07 12:49:42 -05:00
|
|
|
#include "lexer.h"
|
|
|
|
typedef int FIL;
|
2014-06-16 01:33:14 -04:00
|
|
|
#include "../stmhal/lexerfatfs.h"
|
2014-01-07 12:49:42 -05:00
|
|
|
|
2014-01-15 01:23:56 -05:00
|
|
|
mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
|
2014-01-07 12:49:42 -05:00
|
|
|
printf("import not implemented\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|