diff options
| author | Andrew Guschin <guschin.drew@gmail.com> | 2023-08-13 01:27:00 +0400 |
|---|---|---|
| committer | Andrew Guschin <guschin.drew@gmail.com> | 2023-08-13 06:00:02 -0500 |
| commit | 58acff54b1cd64cb23b9d0b1a304eb9db768e3eb (patch) | |
| tree | 87281f776e0015f218aadb5cbfdad43c66406342 /nauty/naugstrings.h | |
Initial commit
Diffstat (limited to 'nauty/naugstrings.h')
| -rw-r--r-- | nauty/naugstrings.h | 20 |
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 |