[fix] removing struct definition from scanner.re for future generation of scanner.c

This commit is contained in:
Al
2015-03-17 19:46:40 -04:00
parent 2cf909c01e
commit d2ceb5f418

View File

@@ -4,10 +4,6 @@
#include "scanner.h"
typedef struct scanner {
unsigned char *src, *cursor, *start, *end;
} scanner_t;
int scan_token(scanner_t *s)
{
s->start = s->cursor;