1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ucs2_string.h>
3 #include <linux/module.h>
5 /* Return the number of unicode characters in data */
7 ucs2_strnlen(const ucs2_char_t *s, size_t maxlength)
9 unsigned long length = 0;
11 while (*s++ != 0 && length < maxlength)
15 EXPORT_SYMBOL(ucs2_strnlen);
18 ucs2_strlen(const ucs2_char_t *s)
20 return ucs2_strnlen(s, ~0UL);
22 EXPORT_SYMBOL(ucs2_strlen);
25 * Return the number of bytes is the length of this string
26 * Note: this is NOT the same as the number of unicode characters
29 ucs2_strsize(const ucs2_char_t *data, unsigned long maxlength)
31 return ucs2_strnlen(data, maxlength/sizeof(ucs2_char_t)) * sizeof(ucs2_char_t);
33 EXPORT_SYMBOL(ucs2_strsize);
36 ucs2_strncmp(const ucs2_char_t *a, const ucs2_char_t *b, size_t len)
45 if (*a == 0) /* implies *b == 0 */
52 EXPORT_SYMBOL(ucs2_strncmp);
55 ucs2_utf8size(const ucs2_char_t *src)
60 for (i = 0; src[i]; i++) {
73 EXPORT_SYMBOL(ucs2_utf8size);
76 * copy at most maxlength bytes of whole utf8 characters to dest from the
79 * The return value is the number of characters copied, not including the
80 * final NUL character.
83 ucs2_as_utf8(u8 *dest, const ucs2_char_t *src, unsigned long maxlength)
87 unsigned long limit = ucs2_strnlen(src, maxlength);
89 for (i = 0; maxlength && i < limit; i++) {
96 dest[j++] = 0xe0 | (c & 0xf000) >> 12;
97 dest[j++] = 0x80 | (c & 0x0fc0) >> 6;
98 dest[j++] = 0x80 | (c & 0x003f);
99 } else if (c >= 0x80) {
103 dest[j++] = 0xc0 | (c & 0x7c0) >> 6;
104 dest[j++] = 0x80 | (c & 0x03f);
107 dest[j++] = c & 0x7f;
114 EXPORT_SYMBOL(ucs2_as_utf8);
116 MODULE_LICENSE("GPL v2");