| SDL_strlcat(3) | SDL3 FUNCTIONS | SDL_strlcat(3) |
SDL_strlcat - Concatenate strings.
Defined in SDL3/SDL_stdinc.h
#include "SDL3/SDL.h"
size_t SDL_strlcat(char *dst, const char *src, size_t maxlen);
This function appends up to maxlen
• SDL_strlen (dst) - 1 characters from src to the end of the string in dst , then appends a null terminator. src and dst must not overlap.
If maxlen
• SDL_strlen (dst) - 1 is less than or equal to 0, then dst is unmodified.
Returns the length (in characters, excluding the null terminator) of the string in dst plus the length of src .
It is safe to call this function from any thread.
This function is available since SDL 3.2.0.
•(3), SDL_strlcpy(3)
| SDL 3.2.10 | Simple Directmedia Layer |