From d6480d2902ad98998079323e8c26e5311b28588c Mon Sep 17 00:00:00 2001 From: Al Date: Sun, 4 Oct 2015 18:23:42 -0400 Subject: [PATCH] [utils] Adding ksort for strings by default in collections.h --- src/collections.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/collections.h b/src/collections.h index 91befa32..9e561a2b 100644 --- a/src/collections.h +++ b/src/collections.h @@ -7,6 +7,7 @@ #include #include "klib/khash.h" +#include "klib/ksort.h" #include "vector.h" #include "vector_math.h" @@ -43,6 +44,7 @@ VECTOR_INIT_NUMERIC_FLOAT(double_array, double, fabs) VECTOR_INIT(char_array, char) VECTOR_INIT(uchar_array, unsigned char) VECTOR_INIT(string_array, char *) - + +KSORT_INIT_STR #endif