| 754 | } |
| 755 | |
| 756 | void addReplyAggregateLen(client *c, long length, int prefix) { |
| 757 | serverAssert(length >= 0); |
| 758 | addReplyLongLongWithPrefix(c,length,prefix); |
| 759 | } |
| 760 | |
| 761 | void addReplyArrayLen(client *c, long length) { |
| 762 | addReplyAggregateLen(c,length,'*'); |
no test coverage detected