Compare two string objects, returning -1, 0 or 1 respectively if * a < b, a == b, a > b. Strings are compared byte by byte as two * binary blobs without any encoding care / collation attempt. */
| 1399 | * a < b, a == b, a > b. Strings are compared byte by byte as two |
| 1400 | * binary blobs without any encoding care / collation attempt. */ |
| 1401 | int RM_StringCompare(RedisModuleString *a, RedisModuleString *b) { |
| 1402 | return compareStringObjects(a,b); |
| 1403 | } |
| 1404 | |
| 1405 | /* Return the (possibly modified in encoding) input 'str' object if |
| 1406 | * the string is unshared, otherwise NULL is returned. */ |
nothing calls this directly
no test coverage detected