/** * 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