Cleanup: comments (long lines) in utfconv

This commit is contained in:
Campbell Barton 2019-05-01 20:30:17 +10:00
parent 5b1fcf8833
commit 59fb13c2b1
3 changed files with 18 additions and 16 deletions

@ -83,22 +83,22 @@ size_t count_utf_16_from_8(const char *string8)
count++; count++;
u32 = 0; u32 = 0;
continue; continue;
} //1 utf-8 char } // 1 utf-8 char
if ((u & 0x07 << 5) == 0xC0) { if ((u & 0x07 << 5) == 0xC0) {
type = 1; type = 1;
u32 = u & 0x1F; u32 = u & 0x1F;
continue; continue;
} //2 utf-8 char } // 2 utf-8 char
if ((u & 0x0F << 4) == 0xE0) { if ((u & 0x0F << 4) == 0xE0) {
type = 2; type = 2;
u32 = u & 0x0F; u32 = u & 0x0F;
continue; continue;
} //3 utf-8 char } // 3 utf-8 char
if ((u & 0x1F << 3) == 0xF0) { if ((u & 0x1F << 3) == 0xF0) {
type = 3; type = 3;
u32 = u & 0x07; u32 = u & 0x07;
continue; continue;
} //4 utf-8 char } // 4 utf-8 char
continue; continue;
} }
else { else {
@ -204,22 +204,22 @@ int conv_utf_8_to_16(const char *in8, wchar_t *out16, size_t size16)
out16++; out16++;
u32 = 0; u32 = 0;
continue; continue;
} //1 utf-8 char } // 1 utf-8 char
if ((u & 0x07 << 5) == 0xC0) { if ((u & 0x07 << 5) == 0xC0) {
type = 1; type = 1;
u32 = u & 0x1F; u32 = u & 0x1F;
continue; continue;
} //2 utf-8 char } // 2 utf-8 char
if ((u & 0x0F << 4) == 0xE0) { if ((u & 0x0F << 4) == 0xE0) {
type = 2; type = 2;
u32 = u & 0x0F; u32 = u & 0x0F;
continue; continue;
} //3 utf-8 char } // 3 utf-8 char
if ((u & 0x1F << 3) == 0xF0) { if ((u & 0x1F << 3) == 0xF0) {
type = 3; type = 3;
u32 = u & 0x07; u32 = u & 0x07;
continue; continue;
} //4 utf-8 char } // 4 utf-8 char
err |= UTF_ERROR_ILLCHAR; err |= UTF_ERROR_ILLCHAR;
continue; continue;
} }

@ -81,12 +81,14 @@ char *alloc_utf_8_from_16(const wchar_t *in16, size_t add);
/** /**
* Allocates and converts the utf-16 string from utf-8 * Allocates and converts the utf-16 string from utf-8
* @param in8 utf-8 string to convert * @param in8 utf-8 string to convert
* @param add any additional size which will be allocated for new utf-16 string in wchar_t (two bytes) * @param add any additional size which will be allocated for new utf-16 string
* in wchar_t (two bytes)
* @return New allocated and converted utf-16 string or NULL if in8 is 0. * @return New allocated and converted utf-16 string or NULL if in8 is 0.
*/ */
wchar_t *alloc_utf16_from_8(const char *in8, size_t add); wchar_t *alloc_utf16_from_8(const char *in8, size_t add);
/* Easy allocation and conversion of new utf-16 string. New string has _16 suffix. Must be deallocated with UTF16_UN_ENCODE in right order*/ /* Easy allocation and conversion of new utf-16 string. New string has _16 suffix.
* Must be deallocated with UTF16_UN_ENCODE in right order. */
#define UTF16_ENCODE(in8str) \ #define UTF16_ENCODE(in8str) \
if (1) { \ if (1) { \
wchar_t *in8str##_16 = alloc_utf16_from_8((const char *)in8str, 0) wchar_t *in8str##_16 = alloc_utf16_from_8((const char *)in8str, 0)