11 lines
144 B
C
11 lines
144 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "list.h"
|
|
#include "token.h"
|
|
|
|
void ParseTokens(List*);
|
|
|
|
#endif |