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