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