]> granicus.if.org Git - graphviz/commitdiff
Re-do some .h files to limit exposure of internal values, .h files,
authorerg <devnull@localhost>
Thu, 7 Dec 2006 22:49:36 +0000 (22:49 +0000)
committererg <devnull@localhost>
Thu, 7 Dec 2006 22:49:36 +0000 (22:49 +0000)
and dependencies on config.h; return to a simple, concrete boolean type

lib/dotgen/conc.c
lib/dotgen/dotprocs.h
lib/dotgen/dotsplines.c

index 636c46489527d5152b3d15b27a0e4296c6853c5a..0a64213fdbfc8915f0f599c42e6a5375cb4322f9 100644 (file)
@@ -25,7 +25,7 @@
 #define                UP              0
 #define                DOWN    1
 
-static bool samedir(edge_t * e, edge_t * f)
+static boolean samedir(edge_t * e, edge_t * f)
 {
     edge_t *e0, *f0;
 
@@ -39,13 +39,13 @@ static bool samedir(edge_t * e, edge_t * f)
            * (ND_rank(e0->tail) - ND_rank(e0->head)) > 0);
 }
 
-static bool downcandidate(node_t * v)
+static boolean downcandidate(node_t * v)
 {
     return ((ND_node_type(v) == VIRTUAL) && (ND_in(v).size == 1)
            && (ND_out(v).size == 1) && (ND_label(v) == NULL));
 }
 
-static bool bothdowncandidates(node_t * u, node_t * v)
+static boolean bothdowncandidates(node_t * u, node_t * v)
 {
     edge_t *e, *f;
     e = ND_in(u).list[0];
@@ -57,13 +57,13 @@ static bool bothdowncandidates(node_t * u, node_t * v)
     return FALSE;
 }
 
-static bool upcandidate(node_t * v)
+static boolean upcandidate(node_t * v)
 {
     return ((ND_node_type(v) == VIRTUAL) && (ND_out(v).size == 1)
            && (ND_in(v).size == 1) && (ND_label(v) == NULL));
 }
 
-static bool bothupcandidates(node_t * u, node_t * v)
+static boolean bothupcandidates(node_t * u, node_t * v)
 {
     edge_t *e, *f;
     e = ND_out(u).list[0];
index ccab9e9bb7c1cdd5d0b76ac46e43f142c6816718..7ca1bdaf72eccad8a2aadde6cbea035b65429e1b 100644 (file)
@@ -77,7 +77,7 @@ extern "C" {
 #if defined(_BLD_dot) && defined(_DLL)
 #   define extern __EXPORT__
 #endif
-    extern void dot_nodesize(Agnode_t *, bool);
+    extern void dot_nodesize(Agnode_t *, boolean);
     extern void dot_concentrate(Agraph_t *);
     extern void dot_mincross(Agraph_t *);
     extern void dot_position(Agraph_t *);
index d1f462ec831217e6486afa4ba274df7fde0e99ef..88beba0396733fd004529c5bad11a4c1e362af55 100644 (file)
@@ -79,7 +79,7 @@ typedef struct {
 
 static void adjustregularpath(path *, int, int);
 static Agedge_t *bot_bound(Agedge_t *, int);
-static bool pathscross(Agnode_t *, Agnode_t *, Agedge_t *, Agedge_t *);
+static boolean pathscross(Agnode_t *, Agnode_t *, Agedge_t *, Agedge_t *);
 #ifdef OBSOLETE
 static void chooseflatsides(pathend_t *, pathend_t *, int *, int *, int *,
                            int *, int *, int *);
@@ -109,13 +109,13 @@ static Agedge_t *top_bound(Agedge_t *, int);
 
 #define GROWEDGES (edges = ALLOC (n_edges + CHUNK, edges, edge_t*))
 
-static bool spline_merge(node_t * n)
+static boolean spline_merge(node_t * n)
 {
     return ((ND_node_type(n) == VIRTUAL)
            && ((ND_in(n).size > 1) || (ND_out(n).size > 1)));
 }
 
-static bool swap_ends_p(edge_t * e)
+static boolean swap_ends_p(edge_t * e)
 {
     while (ED_to_orig(e))
        e = ED_to_orig(e);
@@ -889,7 +889,7 @@ make_flat_adj_edges(path* P, edge_t** edges, int ind, int cnt, edge_t* e0)
  */
 static void
 makeFlatEnd (spline_info_t* sp, path* P, node_t* n, edge_t* e, pathend_t* endp,
-             bool isBegin)
+             boolean isBegin)
 {
     box b;
     graph_t* g = n->graph;
@@ -908,7 +908,7 @@ makeFlatEnd (spline_info_t* sp, path* P, node_t* n, edge_t* e, pathend_t* endp,
  */
 static void
 makeBottomFlatEnd (spline_info_t* sp, path* P, node_t* n, edge_t* e, 
-       pathend_t* endp, bool isBegin)
+       pathend_t* endp, boolean isBegin)
 {
     box b;
     graph_t* g = n->graph;
@@ -2132,7 +2132,7 @@ int dir;
     return rv;
 }
 
-static bool pathscross(n0, n1, ie1, oe1)
+static boolean pathscross(n0, n1, ie1, oe1)
 node_t *n0, *n1;
 edge_t *ie1, *oe1;
 {