00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifdef __cplusplus
00018 extern "C" {
00019 #endif
00020
00021 #ifndef FDPDBG_H
00022 #define FDPDBG_H
00023
00024 #ifdef DEBUG
00025
00026 #include <fdp.h>
00027 #include <stdio.h>
00028 #include <graph.h>
00029
00030 extern double Scale;
00031 extern void outputGraph(Agraph_t *, FILE *, int);
00032
00033 extern void incInd(void);
00034 extern void decInd(void);
00035 extern void prIndent(void);
00036
00037 extern void dump(graph_t * g, int doAll, int doBB);
00038 extern void dumpE(graph_t * g, int derived);
00039 extern void dumpG(graph_t * g, char *fname, int);
00040
00041 #endif
00042
00043 #endif
00044
00045 #ifdef __cplusplus
00046 }
00047 #endif