Skip to content

scat_range

Category: string
GitHub: cute_string.h


Appends a range of characters from string b onto the end of a.

#define scat_range(a, b, b_end) cf_string_append_range(a, b, b_end)
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 sappend_range.

sdyna
sappend
scat
sappend_range
sfmt_append
sfmt