#include <stdio.h>
#include <stdlib.h>
#include "token.h"
#include "input.h"
Go to the source code of this file.
Functions | |
int | tokenInit (void) |
Initialize Token System. More... | |
int | tokenClose (void) |
Close the Token sytem. More... | |
int | tokenize (void) |
int | tokenGet (Token *tok) |
int | tokenNew (Token *newTok) |
int | tokenDelete (Token *delTok) |
Variables | |
Token | token |
|
Close the Token sytem. Removes any memory occupied by the token system, and releases any resources used.
Definition at line 50 of file token.c. Referenced by main(). |
|
|
|
Definition at line 67 of file token.c. References inputChar(), _Token::name, and tokenNew(). |
|
Initialize Token System. Initializes the token linked list, and any other setup procedures.
Definition at line 38 of file token.c. References _Token::next, and _Token::type. Referenced by main(). |
|
Definition at line 55 of file token.c. References _Token::name, tokenDelete(), and tokenGet(). Referenced by main(). |
|
|
|
|