mirror of
https://github.com/fluencelabs/redis
synced 2025-06-14 01:31:21 +00:00
addReplyHumanLongDouble() API added.
Send a long double or double as a bulk reply, in a human friendly format.
This commit is contained in:
@ -1123,6 +1123,7 @@ void addReplyBulkSds(client *c, sds s);
|
||||
void addReplyError(client *c, const char *err);
|
||||
void addReplyStatus(client *c, const char *status);
|
||||
void addReplyDouble(client *c, double d);
|
||||
void addReplyHumanLongDouble(client *c, long double d);
|
||||
void addReplyLongLong(client *c, long long ll);
|
||||
void addReplyMultiBulkLen(client *c, long length);
|
||||
void copyClientOutputBuffer(client *dst, client *src);
|
||||
|
Reference in New Issue
Block a user