Append the specified sds 't' to the existing sds 's'. * * After the call, the modified sds string is no longer valid and all the * references must be substituted with the new pointer returned by the call. */
| 418 | * After the call, the modified sds string is no longer valid and all the |
| 419 | * references must be substituted with the new pointer returned by the call. */ |
| 420 | sds sdscatsds(sds s, const sds t) { |
| 421 | return sdscatlen(s, t, sdslen(t)); |
| 422 | } |
| 423 | |
| 424 | /* Destructively modify the sds string 's' to hold the specified binary |
| 425 | * safe string pointed by 't' of length 'len' bytes. */ |
no test coverage detected