summaryrefslogtreecommitdiff
path: root/src/basic/utf8.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2018-02-14 18:41:03 +0100
committerSven Eden <yamakuzure@gmx.net>2018-05-30 07:58:56 +0200
commit69efcf51adbe0382c11d83d04e14279fe010d2b2 (patch)
tree677a32a254ff26140649520f9c4dfa55b5c68442 /src/basic/utf8.c
parent18344601acc263daef6008a4a0f2e8791fd20db7 (diff)
utf8: add utf8_n_codepoints() for counting complete utf8 codepoints in a string
Diffstat (limited to 'src/basic/utf8.c')
-rw-r--r--src/basic/utf8.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/basic/utf8.c b/src/basic/utf8.c
index 4da9a405c..b17f42026 100644
--- a/src/basic/utf8.c
+++ b/src/basic/utf8.c
@@ -408,3 +408,22 @@ int utf8_encoded_valid_unichar(const char *str) {
return len;
}
+
+size_t utf8_n_codepoints(const char *str) {
+ size_t n = 0;
+
+ /* Returns the number of UTF-8 codepoints in this string, or (size_t) -1 if the string is not valid UTF-8. */
+
+ while (*str != 0) {
+ int k;
+
+ k = utf8_encoded_valid_unichar(str);
+ if (k < 0)
+ return (size_t) -1;
+
+ str += k;
+ n++;
+ }
+
+ return n;
+}