summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-07-05 23:04:46 +0200
committerTyge Løvset <[email protected]>2021-07-05 23:04:46 +0200
commit47c199b646a4205a8e8ff07397101398dea83221 (patch)
tree5fac37f78090668289829b6f32efdb6f2490390d /docs
parentbaed8c31eacc94fc8066b2ce2fbb8d851350895f (diff)
downloadSTC-modified-47c199b646a4205a8e8ff07397101398dea83221.tar.gz
STC-modified-47c199b646a4205a8e8ff07397101398dea83221.zip
Some small updates.
Diffstat (limited to 'docs')
-rw-r--r--docs/cstr_api.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/cstr_api.md b/docs/cstr_api.md
index c26bb868..8c3c104f 100644
--- a/docs/cstr_api.md
+++ b/docs/cstr_api.md
@@ -83,7 +83,7 @@ cstr_iter_t cstr_end(cstr* self);
void cstr_next(cstr_iter_t* it);
bool cstr_getline(cstr *self, FILE *stream); // cstr_getdelim(self, '\n', stream)
-bool cstr_getdelim(cstr *self, int delim, FILE *stream);
+bool cstr_getdelim(cstr *self, int delim, FILE *stream); // does not append delim to result
```
Note that all methods with arguments `(..., const char* str, size_t n)`, `n` must be within the range of `str` length.