diff options
Diffstat (limited to 'docs/cstr_api.md')
| -rw-r--r-- | docs/cstr_api.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cstr_api.md b/docs/cstr_api.md index 6624e779..a8a59388 100644 --- a/docs/cstr_api.md +++ b/docs/cstr_api.md @@ -64,7 +64,7 @@ These returns properties of a string. `5-6)` returns reference, ie. pointer to t ```c 1) cstr_t* cstr_append(cstr_t* self, const char* str); 2) cstr_t* cstr_append_n(cstr_t* self, const char* str, size_t len); - 3) cstr_t* cstr_push_back(cstr_t* self, char ch); + 3) void cstr_push_back(cstr_t* self, char ch); 4) void cstr_pop_back(cstr_t* self); 5) void cstr_insert(cstr_t* self, size_t pos, const char* str); 6) void cstr_insert_n(cstr_t* self, size_t pos, const char* str, size_t n); |
