13 lines
262 B
C
13 lines
262 B
C
|
#include "../header/common.h"
|
||
|
|
||
|
#ifndef _LEXER_H_
|
||
|
#define _LEXER_H_
|
||
|
|
||
|
//Convert the input_file into tokens
|
||
|
void lexer(FILE *input_file, char tokens[][MAX_TOKEN_SIZE]);
|
||
|
|
||
|
//Print out all the tokens in tokens
|
||
|
void print_tokens(char tokens[][MAX_TOKEN_SIZE]);
|
||
|
|
||
|
|
||
|
#endif
|