17 lines
216 B
C
17 lines
216 B
C
/**
|
|
* Holds the AST model
|
|
*/
|
|
#ifndef AST_H
|
|
#define AST_H
|
|
|
|
/**
|
|
* The top-level model.
|
|
* Every file matches an entire Module.
|
|
*/
|
|
typedef struct {
|
|
/// @brief The name of the module.
|
|
char* name;
|
|
} Module;
|
|
|
|
#endif
|