diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-30 08:28:15 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-30 08:28:15 +0100 |
commit | 045f4bb5b1767140c4f6cfe2d2002553925c4205 (patch) | |
tree | f51b2034e91a3f67d2bde506cf84d13cfc496c6e /lib/unicode/string/u8wnext.c | |
parent | 5dbf53a1c512f9163744874e3d502e9f9e2808da (diff) |
Make string view lengths signed
Diffstat (limited to 'lib/unicode/string/u8wnext.c')
-rw-r--r-- | lib/unicode/string/u8wnext.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/unicode/string/u8wnext.c b/lib/unicode/string/u8wnext.c index 493ec9f..da11f4a 100644 --- a/lib/unicode/string/u8wnext.c +++ b/lib/unicode/string/u8wnext.c @@ -22,7 +22,7 @@ struct wbrk_state { }; static bool advance(struct wbrk_state *); -static size_t findwbrk(u8view_t); +static ptrdiff_t findwbrk(u8view_t); static struct wbrk_state mkwbrkstate(u8view_t); size_t @@ -34,7 +34,7 @@ u8wnext(u8view_t *w, u8view_t *sv) if (sv->len == 0) return 0; - size_t off = findwbrk(*sv); + ptrdiff_t off = findwbrk(*sv); if (w != nullptr) *w = (u8view_t){sv->p, off}; @@ -43,7 +43,7 @@ u8wnext(u8view_t *w, u8view_t *sv) return off; } -size_t +ptrdiff_t findwbrk(u8view_t sv) { ASSUME(sv.p != nullptr); |