diff options
| author | tylo <[email protected]> | 2020-03-09 17:29:19 +0100 |
|---|---|---|
| committer | tylo <[email protected]> | 2020-03-09 17:29:19 +0100 |
| commit | b3c5e7e311c6fa2ba37448cc6703d3c4add3637a (patch) | |
| tree | 613df7e38d45241eecab3b88b6e7cc0b6a23ce13 /cstring.h | |
| parent | 7ef38a5f3dbf7fbda4137ca3f341e9b962362fab (diff) | |
| download | STC-modified-b3c5e7e311c6fa2ba37448cc6703d3c4add3637a.tar.gz STC-modified-b3c5e7e311c6fa2ba37448cc6703d3c4add3637a.zip | |
Minor
Diffstat (limited to 'cstring.h')
| -rw-r--r-- | cstring.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -238,8 +238,8 @@ static inline char* cstring_splitNext(const char* delimiters) { // CVector / CMap API functions:
#define cstring_getRaw(x) ((x).str)
-static inline uint32_t cstring_hash(const char** str, size_t sz_ignored) { return cdef_murmurHash(*str, strlen(*str)); }
-static inline int cstring_compare(CString* self, const char** str, size_t sz_ignored) { return strcmp(self->str, *str); }
+static inline uint32_t cstring_hashRaw(const char** str, size_t sz_ignored) { return cdef_murmurHash(*str, strlen(*str)); }
+static inline int cstring_compareRaw(CString* self, const char** str, size_t sz_ignored) { return strcmp(self->str, *str); }
#endif
|
