Passthrough to ziplistCompare() */
| 1064 | |
| 1065 | /* Passthrough to ziplistCompare() */ |
| 1066 | int quicklistCompare(unsigned char *p1, unsigned char *p2, int p2_len) { |
| 1067 | return ziplistCompare(p1, p2, p2_len); |
| 1068 | } |
| 1069 | |
| 1070 | /* Returns a quicklist iterator 'iter'. After the initialization every |
| 1071 | * call to quicklistNext() will return the next element of the quicklist. */ |
no test coverage detected