| 623 | } |
| 624 | |
| 625 | void incrbyCommand(client *c) { |
| 626 | long long incr; |
| 627 | |
| 628 | if (getLongLongFromObjectOrReply(c, c->argv[2], &incr, NULL) != C_OK) return; |
| 629 | incrDecrCommand(c,incr); |
| 630 | } |
| 631 | |
| 632 | void decrbyCommand(client *c) { |
| 633 | long long incr; |
nothing calls this directly
no test coverage detected