libmya 0.1.0
Library to parse Mya language.
Loading...
Searching...
No Matches
stack.h File Reference
#include "ast.h"
Include dependency graph for stack.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  stack
 A struct representing a dynamic stack. More...
 

Macros

#define STACK_INITIAL_LENGTH   20
 
#define STACK_LENGTH_INCREMENT   50
 

Typedefs

typedef struct stack stack_t
 A struct representing a dynamic stack.
 

Macro Definition Documentation

◆ STACK_INITIAL_LENGTH

#define STACK_INITIAL_LENGTH   20

Definition at line 5 of file stack.h.

◆ STACK_LENGTH_INCREMENT

#define STACK_LENGTH_INCREMENT   50

Definition at line 6 of file stack.h.

Typedef Documentation

◆ stack_t

typedef struct stack stack_t

A struct representing a dynamic stack.

Each value on the stack is a ast_node_t struct.