From ffef6a1c3bb46256e40e5613653abf480e7ee73c Mon Sep 17 00:00:00 2001 From: Tyge Løvset <60263450+tylo-work@users.noreply.github.com> Date: Thu, 19 Mar 2020 09:42:54 +0100 Subject: Added sort Changed compare function API --- c_lib/cstring.h | 1 - 1 file changed, 1 deletion(-) (limited to 'c_lib/cstring.h') diff --git a/c_lib/cstring.h b/c_lib/cstring.h index 08e6c4c6..e40721fc 100644 --- a/c_lib/cstring.h +++ b/c_lib/cstring.h @@ -238,7 +238,6 @@ static inline char* cstring_splitNext(const char* delimiters) { #define cstring_getRaw(x) ((x).str) static inline uint32_t cstring_hashRaw(const char** str, size_t sz_ignored) { return c_defaultHash(*str, strlen(*str)); } -static inline int cstring_compareRaw(CString* self, const char** str, size_t sz_ignored) { return strcmp(self->str, *str); } #endif -- cgit v1.2.3