#include <common/utils.h>
#include "convert.h"
#include <ctype.h>
+#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
static void writeDicts(Agraph_t * g, FILE * gxlFile)
{
Agdatadict_t *def;
- if ((def = agdatadict(g, FALSE))) {
+ if ((def = agdatadict(g, false))) {
writeDict(g, gxlFile, "graph", def->dict.g, 1);
writeDict(g, gxlFile, "node", def->dict.n, 0);
writeDict(g, gxlFile, "edge", def->dict.e, 0);
Agedge_t *e;
writeSubgs(stp, g, gxlFile);
- Agdatadict_t *dd = agdatadict(g, FALSE);
+ Agdatadict_t *dd = agdatadict(g, false);
for (n = agfstnode(g); n; n = agnxtnode(g, n)) {
realn = agidnode(stp->root, AGID(n), 0);
if (!writeval(realn)) {