Add a long long as a bulk reply */
| 858 | |
| 859 | /* Add a long long as a bulk reply */ |
| 860 | void addReplyBulkLongLong(client *c, long long ll) { |
| 861 | char buf[64]; |
| 862 | int len; |
| 863 | |
| 864 | len = ll2string(buf,64,ll); |
| 865 | addReplyBulkCBuffer(c,buf,len); |
| 866 | } |
| 867 | |
| 868 | /* Reply with a verbatim type having the specified extension. |
| 869 | * |
no test coverage detected