| 1342 | } |
| 1343 | |
| 1344 | int dictSdsKeyCompare(void *privdata, const void *key1, |
| 1345 | const void *key2) |
| 1346 | { |
| 1347 | int l1,l2; |
| 1348 | DICT_NOTUSED(privdata); |
| 1349 | |
| 1350 | l1 = sdslen((sds)key1); |
| 1351 | l2 = sdslen((sds)key2); |
| 1352 | if (l1 != l2) return 0; |
| 1353 | return memcmp(key1, key2, l1) == 0; |
| 1354 | } |
| 1355 | |
| 1356 | void dictSdsNOPDestructor(void *, void *) {} |
| 1357 |
no test coverage detected