Append the specified null termianted C string to the sds string 's'. * * After the call, the passed sds string is no longer valid and all the * references must be substituted with the new pointer returned by the call. */
| 410 | * After the call, the passed sds string is no longer valid and all the |
| 411 | * references must be substituted with the new pointer returned by the call. */ |
| 412 | sds sdscat(sds s, const char *t) { |
| 413 | return sdscatlen(s, t, strlen(t)); |
| 414 | } |
| 415 | |
| 416 | /* Append the specified sds 't' to the existing sds 's'. |
| 417 | * |
no test coverage detected