A case insensitive version used for the command lookup table and other * places where case insensitive non binary-safe comparison is needed. */
| 1271 | /* A case insensitive version used for the command lookup table and other |
| 1272 | * places where case insensitive non binary-safe comparison is needed. */ |
| 1273 | int dictSdsKeyCaseCompare(void *privdata, const void *key1, |
| 1274 | const void *key2) |
| 1275 | { |
| 1276 | DICT_NOTUSED(privdata); |
| 1277 | |
| 1278 | return strcasecmp(key1, key2) == 0; |
| 1279 | } |
| 1280 | |
| 1281 | void dictObjectDestructor(void *privdata, void *val) |
| 1282 | { |
no test coverage detected