summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/cstr_api.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/cstr_api.md b/docs/cstr_api.md
index 4183ef7b..0f6b2e89 100644
--- a/docs/cstr_api.md
+++ b/docs/cstr_api.md
@@ -73,10 +73,6 @@ void cstr_pop_back(cstr* self);
char* cstr_front(cstr* self);
char* cstr_back(cstr* self);
-cstr_iter cstr_begin(cstr* self);
-cstr_iter cstr_end(cstr* self);
-void cstr_next(cstr_iter* it);
-
bool cstr_getline(cstr *self, FILE *stream); // cstr_getdelim(self, '\n', stream)
bool cstr_getdelim(cstr *self, int delim, FILE *stream); // does not append delim to result
```
@@ -99,7 +95,6 @@ int c_strncasecmp(const char* str1, const char* str2, size_t n);
|:----------------|:-------------------------------|:-------------------------|
| `cstr` | `struct { char *str; }` | The string type |
| `cstr_value` | `char` | The string element type |
-| `cstr_iter` | `struct { cstr_value *ref; }` | cstr iterator |
## Constants and macros