From: erg Date: Thu, 7 Dec 2006 22:49:36 +0000 (+0000) Subject: Re-do some .h files to limit exposure of internal values, .h files, X-Git-Tag: LAST_LIBGRAPH~32^2~5788 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=710fdfc1f60369d7cb94255e621c4690641d6276;p=graphviz Re-do some .h files to limit exposure of internal values, .h files, and dependencies on config.h; return to a simple, concrete boolean type --- diff --git a/lib/common/mpgen.c b/lib/common/mpgen.c index ce9d6ece1..62ccdbb83 100644 --- a/lib/common/mpgen.c +++ b/lib/common/mpgen.c @@ -246,7 +246,7 @@ static void mp_polyline(point * A, int n) fprintf(Output_file, " withcolor %s;\n", S[SP].color); } -static void mp_usershape(usershape_t *us, boxf b, point *A, int n, bool filled) +static void mp_usershape(usershape_t *us, boxf b, point *A, int n, boolean filled) { int j; fprintf(Output_file, "%%GV USER SHAPE [ "); diff --git a/lib/common/output.c b/lib/common/output.c index b4f076852..e6c100494 100644 --- a/lib/common/output.c +++ b/lib/common/output.c @@ -61,7 +61,7 @@ static void writenodeandport(FILE * fp, node_t * node, char *port) /* _write_plain: */ -void write_plain(GVJ_t * job, graph_t * g, FILE * f, bool extend) +void write_plain(GVJ_t * job, graph_t * g, FILE * f, boolean extend) { int i, j, splinePoints; char *tport, *hport;