diff options
author | Christoph Hellwig <hch@lst.de> | 2021-09-15 09:00:02 +0200 |
---|---|---|
committer | Gabriel Krisman Bertazi <krisman@collabora.com> | 2021-10-11 22:01:54 +0200 |
commit | 9012d79cf0c760eb69d54163ee5152c1b504f7aa (patch) | |
tree | a8e422d8e8a21ab0d0329443ce9eee564c3c8195 /fs/unicode/utf8-selftest.c | |
parent | unicode: remove the unused utf8{,n}age{min,max} functions (diff) | |
download | linux-9012d79cf0c760eb69d54163ee5152c1b504f7aa.tar.xz linux-9012d79cf0c760eb69d54163ee5152c1b504f7aa.zip |
unicode: simplify utf8len
Just use the utf8nlen implementation with a (size_t)-1 len argument,
similar to utf8_lookup. Also move the function to utf8-selftest.c, as
it isn't used anywhere else.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com>
Diffstat (limited to 'fs/unicode/utf8-selftest.c')
-rw-r--r-- | fs/unicode/utf8-selftest.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/unicode/utf8-selftest.c b/fs/unicode/utf8-selftest.c index 37f33890e012..80fb7c75acb2 100644 --- a/fs/unicode/utf8-selftest.c +++ b/fs/unicode/utf8-selftest.c @@ -160,6 +160,11 @@ static const struct { } }; +static ssize_t utf8len(const struct utf8data *data, const char *s) +{ + return utf8nlen(data, s, (size_t)-1); +} + static void check_utf8_nfdi(void) { int i; |