13 lines
207 B
C
13 lines
207 B
C
#ifndef TOKENIZER_H
|
|
#define TOKENIZER_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "list.h"
|
|
|
|
List* GetTokens(const char *);
|
|
char* GetToken(char*);
|
|
char* PeekNextToken(void);
|
|
|
|
#endif |