summaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-05-10 12:19:16 +0200
committerTyge Løvset <[email protected]>2021-05-10 12:19:16 +0200
commitaa3851a95e700bb391eec1610d3b99aca97faaa8 (patch)
tree297ca98e61686dda0407ec27069af2f78f432760 /docs
parent0eb6fb08ab51211aa2ed425c2ebdc1ed6fb2358e (diff)
downloadSTC-modified-aa3851a95e700bb391eec1610d3b99aca97faaa8.tar.gz
STC-modified-aa3851a95e700bb391eec1610d3b99aca97faaa8.zip
Some c_rawstr_*() functions were not updated in documentation.
Diffstat (limited to 'docs')
-rw-r--r--docs/cdeq_api.md2
-rw-r--r--docs/clist_api.md2
-rw-r--r--docs/cstr_api.md6
-rw-r--r--docs/cvec_api.md2
4 files changed, 6 insertions, 6 deletions
diff --git a/docs/cdeq_api.md b/docs/cdeq_api.md
index 61b0e164..35fa8cb3 100644
--- a/docs/cdeq_api.md
+++ b/docs/cdeq_api.md
@@ -23,7 +23,7 @@ be replaced by `i` in all of the following documentation.
`using_cdeq_str()` is a shorthand for:
```
-using_cdeq(str, cstr, c_rstr_compare, cstr_del, cstr_from, cstr_toraw, const char*)
+using_cdeq(str, cstr, c_rawstr_compare, cstr_del, cstr_from, cstr_toraw, const char*)
```
## Methods
diff --git a/docs/clist_api.md b/docs/clist_api.md
index 93384a10..9f7acb37 100644
--- a/docs/clist_api.md
+++ b/docs/clist_api.md
@@ -38,7 +38,7 @@ The macro `using_clist()` must be instantiated in the global scope. `X` is a typ
will affect the names of all clist types and methods. E.g. declaring `using_clist(i, int);`, `X` should
be replaced by `i` in all of the following documentation. `using_clist_str()` is a shorthand for
```c
-using_clist(str, cstr, c_rstr_compare, cstr_del, cstr_from, cstr_toraw, const char*)
+using_clist(str, cstr, c_rawstr_compare, cstr_del, cstr_from, cstr_toraw, const char*)
```
## Methods
diff --git a/docs/cstr_api.md b/docs/cstr_api.md
index 9d9bd36e..0f481b92 100644
--- a/docs/cstr_api.md
+++ b/docs/cstr_api.md
@@ -88,9 +88,9 @@ bool cstr_getdelim(cstr *self, int delim, FILE *stream);
Helper methods:
```c
const char* cstr_toraw(const cstr* x);
-int c_rstr_compare(const char** x, const char** y);
-bool c_rstr_equals(const char** x, const char** y);
-uint64_t c_rstr_hash(const char* const* x, size_t ignored);
+int c_rawstr_compare(const char** x, const char** y);
+bool c_rawstr_equals(const char** x, const char** y);
+uint64_t c_rawstr_hash(const char* const* x, size_t ignored);
int c_strncasecmp(const char* str1, const char* str2, size_t n);
char* c_strnstr(const char* str, const char* needle, size_t n);
char* c_strncasestr(const char* str, const char* needle, size_t n);
diff --git a/docs/cvec_api.md b/docs/cvec_api.md
index e6288336..c6be988a 100644
--- a/docs/cvec_api.md
+++ b/docs/cvec_api.md
@@ -27,7 +27,7 @@ be replaced by `i` in all of the following documentation.
`using_cvec_str()` is a shorthand for:
```
-using_cvec(str, cstr, c_rstr_compare, cstr_del, cstr_from, cstr_toraw, const char*)
+using_cvec(str, cstr, c_rawstr_compare, cstr_del, cstr_from, cstr_toraw, const char*)
```
## Methods