Verilog Parser
verilog_ast_mem.h File Reference

Contains Declarations of datastructures and functions for helping to manage dynamic memory allocation within the library. More...

#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>

Go to the source code of this file.

Data Structures

struct  ast_memory
 Stores information on some allocated memory as a linked list. More...
 

Functions

void * ast_calloc (size_t num, size_t size)
 A simple wrapper around calloc. More...
 
void ast_free_all ()
 Iterates over all allocated memory and frees it. More...
 
char * ast_strdup (char *in)
 Duplicates the supplied null terminated string.
 

Detailed Description

Contains Declarations of datastructures and functions for helping to manage dynamic memory allocation within the library.