| 2353 | } |
| 2354 | |
| 2355 | static int _cmp_variable(void *key1, size_t keylen1, void *key2, size_t keylen2) |
| 2356 | { |
| 2357 | // compare only 3rd~8th bytes (ignore the others) |
| 2358 | return memcmp((uint8_t*)key1+2, (uint8_t*)key2+2, 6); |
| 2359 | } |
| 2360 | |
| 2361 | void custom_compare_variable_test() |
| 2362 | { |
no outgoing calls
no test coverage detected