diff options
| author | Tyge Løvset <[email protected]> | 2022-09-05 09:07:29 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-09-05 09:07:29 +0200 |
| commit | fc559ef64840fe54c0136f064cbfb2d3c055b692 (patch) | |
| tree | 3935236a6ff3f7cfc8db4e0b5cb96e3203197bbc /docs/cstr_api.md | |
| parent | 491a8cba3ee55a1200fc2de8ef3807dd8436f829 (diff) | |
| download | STC-modified-fc559ef64840fe54c0136f064cbfb2d3c055b692.tar.gz STC-modified-fc559ef64840fe54c0136f064cbfb2d3c055b692.zip | |
Added cstr_append_fmt().
Diffstat (limited to 'docs/cstr_api.md')
| -rw-r--r-- | docs/cstr_api.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/cstr_api.md b/docs/cstr_api.md index 273f4de4..3d9aae85 100644 --- a/docs/cstr_api.md +++ b/docs/cstr_api.md @@ -57,6 +57,7 @@ char* cstr_append(cstr* self, const char* str); char* cstr_append_n(cstr* self, const char* str, size_t n); // append n first bytes of str char* cstr_append_sv(cstr* self, csview str); char* cstr_append_s(cstr* self, cstr str); +int cstr_append_fmt(const char* fmt, ...); // printf() formatting char* cstr_append_uninit(cstr* self, size_t len); // append len uninitialized bytes void cstr_insert(cstr* self, size_t pos, const char* ins); |
