strxcat can be considered as a safe replacement for strlcat.
* Another c-string concatenation function.
* strxcat only affects dst if there is enough space to copy src at the end of dst. It null-terminates dst. Otherwise, strxcat doesn't touch dst.
Algorithm:
This function traverses dst looking for the null character '\0'. If it's found it starts to copy src to dst+dst_len, including the '\0' character. strxcat doesn't set the remaining positions (if any) in dst to '\0'
Follow strxcat
Other Useful Business Software
Our Free Plans just got better! | Auth0
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
Be the first to post a review of strxcat!