summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/cstr_api.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/cstr_api.md b/docs/cstr_api.md
index ca6a7d3f..09ca6592 100644
--- a/docs/cstr_api.md
+++ b/docs/cstr_api.md
@@ -78,8 +78,9 @@ void cstr_insert(cstr* self, size_t pos, const char* ins);
void cstr_insert_s(cstr* self, size_t pos, cstr ins);
void cstr_insert_n(cstr* self, size_t pos, const char* ins, size_t n);
-size_t cstr_replace(cstr* self, size_t start, const char* search, const char* repl);
void cstr_replace_all(cstr* self, const char* search, const char* repl);
+size_t cstr_replace(cstr* self, const char* search, const char* repl);
+size_t cstr_replace_from(cstr* self, size_t pos, const char* search, const char* repl);
void cstr_replace_at(cstr* self, size_t pos, size_t len, const char* repl);
void cstr_replace_s(cstr* self, size_t pos, size_t len, cstr repl);
void cstr_replace_n(cstr* self, size_t pos, size_t len, const char* repl, size_t n);