Skip to content

sfmt_append

Category: string
GitHub: cute_string.h


Printf's into the end of the string, using the format string fmt.

#define sfmt_append(s, fmt, ...) cf_string_fmt_append(s, fmt, __VA_ARGS__)
Parameters Description
s The string. Can be NULL.
fmt The format string.
... The parameters for the format string.

Remarks

All printed data is appended to the end of the string. Will automatically adjust it's capacity as needed.

sdyna
sfmt
sset
svfmt
svfmt_append