Skip to content

sappend

Category: string
GitHub: cute_string.h


Appends the string b onto the end of a.

#define sappend(a, b) cf_string_append(a, b)
Parameters Description
a The string to modify. Can be NULL.
b Used to append onto a.

Remarks

You can technically do this with sfmt, but this function is optimized much faster. Does the same thing as scat.

sdyna
sfmt_append
scat
sappend_range
scat_range
sfmt