14 lines
211 B
C
14 lines
211 B
C
#ifndef LEXER_H
|
|
#define LEXER_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
#include "list.h"
|
|
#include "tokenizer.h"
|
|
#include "token.h"
|
|
|
|
List* GetTokensFromLine(char*);
|
|
|
|
#endif |