+/**
+ * @file
+ * @brief abstract graph C library
+ *
+ * [man 3 cgraph](https://graphviz.org/pdf/cgraph.3.pdf)
+ *
+ */
+
/*************************************************************************
* Copyright (c) 2011 AT&T Intellectual Property
* All rights reserved. This program and the accompanying materials
Agdesc_t Agstrictundirected = { .strict = 1, .maingraph = 1 };
Agdisc_t AgDefaultDisc = { &AgMemDisc, &AgIdDisc, &AgIoDisc };
+
+/**
+ * @dir lib/cgraph
+ * @brief abstract graph C library, API cgraph.h
+ *
+ * [man 3 cgraph](https://graphviz.org/pdf/cgraph.3.pdf)
+ */