diff options
| author | tylov <[email protected]> | 2023-08-19 18:55:41 +0200 |
|---|---|---|
| committer | tylov <[email protected]> | 2023-08-19 18:55:41 +0200 |
| commit | ac7afe963527eb66a12962c638242f0426b39575 (patch) | |
| tree | ae0136bf061890bec9fe6a854aad4c17b9bb70ed /docs | |
| parent | e51376c9b72448dad947c3cd3760ab013ca8e4a5 (diff) | |
| download | STC-modified-ac7afe963527eb66a12962c638242f0426b39575.tar.gz STC-modified-ac7afe963527eb66a12962c638242f0426b39575.zip | |
Polishing cspan.h. Updated multidim.c cspan example.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/cstr_api.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/cstr_api.md b/docs/cstr_api.md index 5f6ce9e4..397634ec 100644 --- a/docs/cstr_api.md +++ b/docs/cstr_api.md @@ -120,14 +120,14 @@ cstr_iter cstr_advance(cstr_iter it, intptr_t n); // utf8 functions requires linking with src/utf8code.c symbols: bool cstr_valid_utf8(const cstr* self); // check if str is valid utf8 -cstr cstr_casefold_sv(csview sv); // returns new casefolded utf8 cstr +cstr cstr_casefold_sv(csview sv); // returns new casefolded utf8 cstr cstr cstr_tolower(const char* str); // returns new lowercase utf8 cstr -cstr cstr_tolower_sv(csview sv); // returns new lowercase utf8 cstr +cstr cstr_tolower_sv(csview sv); // returns new lowercase utf8 cstr void cstr_lowercase(cstr* self); // transform cstr to lowercase utf8 cstr cstr_toupper(const char* str); // returns new uppercase utf8 cstr -cstr cstr_toupper_sv(csview sv); // returns new uppercase utf8 cstr +cstr cstr_toupper_sv(csview sv); // returns new uppercase utf8 cstr void cstr_uppercase(cstr* self); // transform cstr to uppercase utf8 int cstr_icmp(const cstr* s1, const cstr* s2); // utf8 case-insensitive comparison |
