Herb C Reference
Loading...
Searching...
No Matches
herb_prism_node.h
Go to the documentation of this file.
1#ifndef HERB_PRISM_NODE_H
2#define HERB_PRISM_NODE_H
3
4#include <prism.h>
5
6typedef struct {
7 pm_node_t* node;
8 pm_parser_t* parser;
10
11#define HERB_PRISM_NODE_EMPTY ((herb_prism_node_T) { .node = NULL, .parser = NULL })
12
13#endif
Definition herb_prism_node.h:6
pm_parser_t * parser
Definition herb_prism_node.h:8
pm_node_t * node
Definition herb_prism_node.h:7