summaryrefslogtreecommitdiff
path: root/nauty/naugstrings.h
diff options
context:
space:
mode:
Diffstat (limited to 'nauty/naugstrings.h')
-rw-r--r--nauty/naugstrings.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/nauty/naugstrings.h b/nauty/naugstrings.h
new file mode 100644
index 0000000..f59c1d5
--- /dev/null
+++ b/nauty/naugstrings.h
@@ -0,0 +1,20 @@
+/* naugstrings.h : Write graph6 or sparse6 strings into array. */
+/* Version 1.1, Jun 2015. */
+
+#include "gtools.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern void gtog6string(graph*,char**,int,int);
+extern void gtos6string(graph*,char**,int,int);
+extern void gtod6string(graph*,char**,int,int);
+extern void sgtos6string(sparsegraph*,char**);
+extern void sgtog6string(sparsegraph*,char**);
+extern void sgtod6string(sparsegraph*,char**);
+extern void gtois6string(graph*,graph*,char**,int,int);
+
+#ifdef __cplusplus
+}
+#endif