Verilog Documentation Generator
veridoc-parsing.h
Go to the documentation of this file.
1 
6 #include <stdio.h>
7 #include <stdlib.h>
8 #include <string.h>
9 
10 #include "veridoc-types.h"
11 #include "veridoc-manifest.h"
12 #include "veridoc-config.h"
13 
14 #ifndef VERIDOC_PARSING_H
15 #define VERIDOC_PARSING_H
16 
23 verilog_source_tree * veridoc_parse_input_source(
24  veridoc_manifest * manifest,
25  veridoc_config * config
26 );
27 
28 
29 #endif
verilog_source_tree * veridoc_parse_input_source(veridoc_manifest *manifest, veridoc_config *config)
Responsible for parsing each file in the manifest, and building the internal source tree...
Definition: veridoc-parsing.c:88
Contains common data structures and functions used on the file manifests.
Contains all of the configuration options for a run of veridoc.
Definition: veridoc-config.h:18
Contains a list of files to parse and document, and folders to search for header files in...
Definition: veridoc-manifest.h:42
Contains data structures and functions for parsing veridoc configs.
Contains type definitions used globally by the program.