| 630 | } |
| 631 | |
| 632 | void decrbyCommand(client *c) { |
| 633 | long long incr; |
| 634 | |
| 635 | if (getLongLongFromObjectOrReply(c, c->argv[2], &incr, NULL) != C_OK) return; |
| 636 | incrDecrCommand(c,-incr); |
| 637 | } |
| 638 | |
| 639 | void incrbyfloatCommand(client *c) { |
| 640 | long double incr, value; |
nothing calls this directly
no test coverage detected