Graphviz  2.41.20171026.1811
dbg.h
Go to the documentation of this file.
1 /* $Id$ $Revision$ */
2 /* vim:set shiftwidth=4 ts=8: */
3 
4 /*************************************************************************
5  * Copyright (c) 2011 AT&T Intellectual Property
6  * All rights reserved. This program and the accompanying materials
7  * are made available under the terms of the Eclipse Public License v1.0
8  * which accompanies this distribution, and is available at
9  * http://www.eclipse.org/legal/epl-v10.html
10  *
11  * Contributors: See CVS logs. Details at http://www.graphviz.org/
12  *************************************************************************/
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 #ifndef FDPDBG_H
19 #define FDPDBG_H
20 
21 #ifdef DEBUG
22 
23 #include <fdp.h>
24 #include <stdio.h>
25 #include <cgraph.h>
26 
27  extern double Scale;
28  extern void outputGraph(Agraph_t *, FILE *, int);
29 
30  extern void incInd(void);
31  extern void decInd(void);
32  extern void prIndent(void);
33 
34  extern void dump(graph_t * g, int doAll, int doBB);
35  extern void dumpE(graph_t * g, int derived);
36  extern void dumpG(graph_t * g, char *fname, int);
37 
38 #endif
39 
40 #endif
41 
42 #ifdef __cplusplus
43 }
44 #endif