Add a long long as a bulk reply */
| 1021 | |
| 1022 | /* Add a long long as a bulk reply */ |
| 1023 | void addReplyBulkLongLong(client *c, long long ll) { |
| 1024 | char buf[64]; |
| 1025 | int len; |
| 1026 | |
| 1027 | len = ll2string(buf,64,ll); |
| 1028 | addReplyBulkCBuffer(c,buf,len); |
| 1029 | } |
| 1030 | |
| 1031 | /* Reply with a verbatim type having the specified extension. |
| 1032 | * |
no test coverage detected