summaryrefslogtreecommitdiffhomepage
path: root/c_lib/cstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'c_lib/cstring.h')
-rw-r--r--c_lib/cstring.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/c_lib/cstring.h b/c_lib/cstring.h
index 1bcd3d61..869c7d5a 100644
--- a/c_lib/cstring.h
+++ b/c_lib/cstring.h
@@ -241,8 +241,9 @@ static inline CString cstring_temp(const char* str) {
// CVector / CMap API functions:
-#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)); }
+#define cstring_getRaw(x) (&(x)->str)
+#define cstring_compareRaw(x, y) strcmp(*(x), *(y))
+static inline uint32_t cstring_hashRaw(const char* const* str, size_t ignored) { return c_defaultHash(*str, strlen(*str)); }
#endif