summaryrefslogtreecommitdiffstatshomepage
path: root/teensy/lexerfatfs.c
blob: 84245f88787b10eb282605c10d9ba0ed64035ee5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdint.h>
#include <stdio.h>

#include "misc.h"
#include "mpconfig.h"
#include "qstr.h"
#include "lexer.h"
typedef int FIL;
#include "../stmhal/lexerfatfs.h"

mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
  printf("import not implemented\n");
  return NULL;
}