14 lines
219 B
C
14 lines
219 B
C
#ifndef SCANNER_H
|
|
#define SCANNER_H
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include "stdlib.h"
|
|
#include "token.h"
|
|
#include "list.h"
|
|
#include "opcodes.h"
|
|
|
|
List* GenerateTokenList(const char*);
|
|
|
|
#endif |