Skip to content

MTY_Strcat

chrisd1100 edited this page Aug 25, 2022 · 1 revision

Append to a string.

For more information, see strcat_s from the C standard library.

void MTY_Strcat(
    char *       dst,
    size_t       size,
    const char * src
);

Parameters

dst (char *)

Destination string.

size (size_t)

Total size in bytes of dst.

src (const char *)

String to append to dst.

Platform support

Windows   macOS   Android   Linux   Web  

See also

Module: Memory

Clone this wiki locally