diff options
| author | Tyge Løvset <[email protected]> | 2022-06-08 10:59:53 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2022-06-08 10:59:53 +0200 |
| commit | fb438a1f2c4275f815cea2fc4f34d3392630b579 (patch) | |
| tree | d09f14ec565bad9a0bf3f54ea708233f48b4cf3d /include | |
| parent | bb540f38796efa8b26fc3b5a36b20c8166f234fd (diff) | |
| download | STC-modified-fb438a1f2c4275f815cea2fc4f34d3392630b579.tar.gz STC-modified-fb438a1f2c4275f815cea2fc4f34d3392630b579.zip | |
Added cstr case folding methods.
Diffstat (limited to 'include')
| -rw-r--r-- | include/stc/cstr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stc/cstr.h b/include/stc/cstr.h index 71206301..b0fa276f 100644 --- a/include/stc/cstr.h +++ b/include/stc/cstr.h @@ -171,8 +171,10 @@ STC_INLINE size_t cstr_capacity(cstr s) // utf8 methods defined in/depending on src/utf8code.c: +extern cstr cstr_tofold(const cstr* self); extern cstr cstr_tolower(const cstr* self); extern cstr cstr_toupper(const cstr* self); +extern void cstr_foldcase(cstr* self); extern void cstr_lowercase(cstr* self); extern void cstr_uppercase(cstr* self); |
