Verilog Parser
verilog_parser_wrapper.c File Reference

Contains implementations of functions declared in verilog_parser.h. More...

#include "verilog_ast.h"
#include "verilog_parser.h"

Functions

int verilog_parse_buffer (char *to_parse, int length)
 Perform a parsing operation on the supplied in-memory string. More...
 
int verilog_parse_file (FILE *to_parse)
 Perform a parsing operation on the currently selected buffer. More...
 
int verilog_parse_string (char *to_parse, int length)
 Perform a parsing operation on the supplied in-memory string. More...
 
void verilog_parser_init ()
 Sets up the parsing environment ready for input. More...
 
int yyparse ()
 This is defined in the generated bison parser code.
 

Detailed Description

Contains implementations of functions declared in verilog_parser.h.