pub unsafe extern "C" fn CSTL_string_resize(
instance: CSTL_StringRef,
new_size: usize,
ch: c_char,
alloc: *mut CSTL_Alloc,
) -> boolExpand description
Resizes the string to contain new_size characters, appending ch
if current size is less than new_size.
If new_size is greater than CSTL_string_max_size() this
function has no effect and returns false, otherwise it returns true.