MCPcopy Create free account
hub / github.com/F-Stack/f-stack / decrbyCommand

Function decrbyCommand

app/redis-6.2.6/src/t_string.c:632–637  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

630}
631
632void 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
639void incrbyfloatCommand(client *c) {
640 long double incr, value;

Callers

nothing calls this directly

Calls 2

incrDecrCommandFunction · 0.85

Tested by

no test coverage detected