MySQL 9.1.0
Source Code Documentation
|
Memory primitives. More...
Functions | |
ulint | ut_strlcpy (char *dst, const char *src, ulint size) |
Copies up to size - 1 characters from the NUL-terminated string src to dst, NUL-terminating the result. More... | |
char * | ut_str3cat (const char *s1, const char *s2, const char *s3) |
Memory primitives.
Created 5/11/1994 Heikki Tuuri
char * ut_str3cat | ( | const char * | s1, |
const char * | s2, | ||
const char * | s3 | ||
) |
Copies up to size - 1 characters from the NUL-terminated string src to dst, NUL-terminating the result.
Returns strlen(src), so truncation occurred if the return value >= size.
dst | in: destination buffer |
src | in: source buffer |
size | in: size of destination buffer |