diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-02-02 18:48:23 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2018-02-02 18:48:23 -0500 |
commit | 01584a2f230b8e9a5367580cb5f457692df347dd (patch) | |
tree | aad31b1ee63531591c57c75f0d5fb692c0cc5631 /lib | |
parent | 7236712c760324fca98c1f0c342000324cfaacb1 (diff) | |
download | c++-01584a2f230b8e9a5367580cb5f457692df347dd.tar.gz c++-01584a2f230b8e9a5367580cb5f457692df347dd.tar.bz2 c++-01584a2f230b8e9a5367580cb5f457692df347dd.zip |
fixed graph free
Diffstat (limited to 'lib')
-rw-r--r-- | lib/graph.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/graph.h b/lib/graph.h index eda7630..9c80dd6 100644 --- a/lib/graph.h +++ b/lib/graph.h @@ -16,3 +16,5 @@ graph_t *graph_create_square(D_t D, L_t L); graph_t *graph_add_ext(const graph_t *G); +void graph_free(graph_t *h); + |