Skip to content

cf_string_append_range

Category: string
GitHub: cute_string.h


Appends a range of characters [b, b_end) onto string a.

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

cf_string_append
cf_string_set