output_graphcrunch_format.h File Reference

#include "types.h"
Include dependency graph for output_graphcrunch_format.h:

Go to the source code of this file.

Functions

void graphcrunch_output (char *path, char *name, short marker_value, netlist_t *netlist)

Function Documentation

void graphcrunch_output ( char *  path,
char *  name,
short  marker_value,
netlist_t netlist 
)

Definition at line 39 of file output_graphcrunch_format.c.

00040 {
00041         char path_and_file[4096];
00042         FILE *fp;
00043 
00044         /* open the file */
00045         sprintf(path_and_file, "%s/%s", path, name);
00046         fp = fopen(path_and_file, "w");
00047 
00048         depth_first_traverse_graphcrunch(fp, marker_value, netlist);
00049 
00050         /* close graph */
00051         fclose(fp);
00052 }

Here is the call graph for this function:

Here is the caller graph for this function:

Generated on Tue Aug 2 10:43:39 2011 for ODIN_II by  doxygen 1.6.3