aboutsummaryrefslogtreecommitdiff
path: root/sort.h
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-17 23:02:59 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-17 23:33:23 +1300
commit316b49df8c4226134496249675b9fe505cf3b31c (patch)
tree108d41c3d23f591a2fc1c2aafe3172b108f143b0 /sort.h
parentBoth tools working now (diff)
downloadtunics-316b49df8c4226134496249675b9fe505cf3b31c.tar.gz
tunics-316b49df8c4226134496249675b9fe505cf3b31c.zip
Free some memory; appease valgrind(1)
Diffstat (limited to 'sort.h')
-rw-r--r--sort.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sort.h b/sort.h
index 9b499c8..3e56b46 100644
--- a/sort.h
+++ b/sort.h
@@ -16,6 +16,7 @@ typedef struct {
char *read_line(FILE* stream);
vec *vec_init(void);
void vec_add(vec *v, char *s);
+void vec_free(vec *v);
static int qsort_strcmp(const void *p1, const void *p2);
#endif