strcat.c

The libc implementation

Author

Martin ‘Solar’ Baute

License

Public Domain

Summary
strcat.cThe libc implementation
Functions
strcatAppends the null terminated string s2 to the end of s1

Functions

strcat

char * strcat(char * _PDCLIB_restrict s1,
const char * _PDCLIB_restrict s2)

Appends the null terminated string s2 to the end of s1

Returns the value of s1

char * strcat(char * _PDCLIB_restrict s1,
const char * _PDCLIB_restrict s2)
Appends the null terminated string s2 to the end of s1