| 447 | } |
| 448 | |
| 449 | int isSdsRepresentableAsLongLong(const char *s, long long *llval) { |
| 450 | return string2ll(s,sdslen(s),llval) ? C_OK : C_ERR; |
| 451 | } |
| 452 | |
| 453 | int isObjectRepresentableAsLongLong(robj *o, long long *llval) { |
| 454 | serverAssertWithInfo(NULL,o,o->type == OBJ_STRING); |
no test coverage detected