#include "types.h"
Go to the source code of this file.
Functions | |
void | graphcrunch_output (char *path, char *name, short marker_value, netlist_t *netlist) |
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 }