diff options
| author | Tyge Løvset <[email protected]> | 2022-01-14 08:16:52 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-01-14 08:16:52 +0100 |
| commit | 379c01f19e186dbd9889bc9dd43d6d867a2a33be (patch) | |
| tree | 85f38eb2439b5b8f7897979b5d5286a583ba994f /docs/cstr_api.md | |
| parent | f78823c591a73e7aa58115b4ffa618fe477ca0e2 (diff) | |
| download | STC-modified-379c01f19e186dbd9889bc9dd43d6d867a2a33be.tar.gz STC-modified-379c01f19e186dbd9889bc9dd43d6d867a2a33be.zip | |
Removed cstr iter; => csview iter is now utf8 iter. See utf8.h example.
Diffstat (limited to 'docs/cstr_api.md')
| -rw-r--r-- | docs/cstr_api.md | 5 |
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 |
