| 913 | } |
| 914 | |
| 915 | void addReplyAggregateLen(client *c, long length, int prefix) { |
| 916 | serverAssert(length >= 0); |
| 917 | addReplyLongLongWithPrefix(c,length,prefix); |
| 918 | } |
| 919 | |
| 920 | void addReplyArrayLen(client *c, long length) { |
| 921 | addReplyAggregateLen(c,length,'*'); |
no test coverage detected