sappend_range¶
Category: string
GitHub: cute_string.h
Appends a range of characters from string b onto the end of a.
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_range.