summaryrefslogtreecommitdiff
path: root/nauty/naugstrings.h
blob: f59c1d5d146bc9c3b3c515a84f0ea72bdd860b02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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