Verilog Documentation Generator
veridoc-types.h
Go to the documentation of this file.
1 
6 #include "verilog-parser/src/verilog_parser.h"
7 
8 #ifndef VERIDOC_TYPES_H
9 #define VERIDOC_TYPES_H
10 
12 typedef enum boolean_e{
13  BOOL_TRUE = 1,
14  BOOL_FALSE = 0
15 } boolean;
16 
17 #endif
18 
boolean
A simple boolean type.
Definition: veridoc-types.h:12