11 lines
160 B
C
11 lines
160 B
C
#ifndef TOKENIZER_H
|
|
#define TOKENIZER_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "list.h"
|
|
|
|
char* SplitOnBasicGrammar(char*);
|
|
|
|
#endif |