-
Notifications
You must be signed in to change notification settings - Fork 55
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
);
dst
(char *
)
Destination string.
size
(size_t
)
Total size in bytes of dst
.
src
(const char *
)
String to append to dst
.