5#define TKSTACK_INITIAL_LENGTH 20
6#define TKSTACK_LENGTH_INCREMENT 50
A struct representing a dynamic stack of token_t pointers.
unsigned int _size
Current number of elements that fits on the stack.
unsigned int length
Number of elements on the stack.
token_t ** values
Array of values on the stack.
struct tkstack tkstack_t
A struct representing a dynamic stack of token_t pointers.
struct token token_t
Struct for a Mya token.