| 279 | } |
| 280 | |
| 281 | butil::Status RedisCommandFormat(butil::IOBuf* buf, const char* fmt, ...) { |
| 282 | va_list ap; |
| 283 | va_start(ap, fmt); |
| 284 | const butil::Status st = RedisCommandFormatV(buf, fmt, ap); |
| 285 | va_end(ap); |
| 286 | return st; |
| 287 | } |
| 288 | |
| 289 | butil::Status |
| 290 | RedisCommandNoFormat(butil::IOBuf* outbuf, const butil::StringPiece& cmd) { |
no test coverage detected