diff options
| author | dacctal <donotcontactmevia@email.invalid> | 2026-07-02 07:29:38 +0000 |
|---|---|---|
| committer | dacctal <donotcontactmevia@email.invalid> | 2026-07-02 07:29:38 +0000 |
| commit | 96463c0d8952bae8d62adec02ce9e6b79d558938 (patch) | |
| tree | d16f5bd78ea5b39b31ab88f1be071d80a1fd751e /src/str.c | |
| parent | 2c99a3d8d74f58e4cc7974c4092c82cd6095ff48 (diff) | |
pkg_create checkpoint!
Diffstat (limited to 'src/str.c')
| -rw-r--r-- | src/str.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -432,11 +432,11 @@ char str_last(const str *s) { return s->data[s->len - 1]; } -size_t str_find_char(const str *s, char c) { +ptrdiff_t str_find_char(const str *s, char c) { return str_slc_find_char(_strslc(s), c); } -size_t str_find_char_right(const str *s, char c) { +ptrdiff_t str_find_char_right(const str *s, char c) { return str_slc_find_char_right(_strslc(s), c); } |
