libmya 0.1.0
Library to parse Mya language.
|
#include "ast.h"
Go to the source code of this file.
Data Structures | |
struct | stack |
A struct representing a dynamic stack. More... | |
Macros | |
#define | ASTSTACK_INITIAL_LENGTH 20 |
#define | ASTSTACK_LENGTH_INCREMENT 50 |
Typedefs | |
typedef struct stack | aststack_t |
A struct representing a dynamic stack. | |
#define ASTSTACK_INITIAL_LENGTH 20 |
Definition at line 5 of file aststack.h.
#define ASTSTACK_LENGTH_INCREMENT 50 |
Definition at line 6 of file aststack.h.
typedef struct stack aststack_t |
A struct representing a dynamic stack.
Each value on the stack is a ast_node_t
struct.