cf_string_append_range¶
Category: string
GitHub: cute_string.h
Appends a range of characters [b, b_end) onto string a.
| Parameters | Description |
|---|---|
a |
The destination string. Modified in-place. |
b |
Pointer to the start of the range. |
b_end |
Pointer one past the end of the range. |
Remarks¶
Shortform: sappend_range(a, b, b_end).