PSTR stStrCat( PSTR dest, const PSTR src );
Address of the destination string.
Address of the source string.
Address of the destination string, containing the appended data.
This function appends the source string to the destination string.
If functions for basic string operations are inactive in the alternative C library (by setting
ST_USE_STRING_CLIB to 1), a macro named stStrCat will be created that calls the strcat
function from the standard C library.
| Version: | 1.0 |
|---|---|
| Header file: | ST_CLIB.h (include ST_API.h) |
| See also: | PSTR, ST_USE_STRING_CLIB |