From: Denys Vlasenko Date: Thu, 16 Jul 2009 00:27:04 +0000 (+0200) Subject: comment fixes, no code changes X-Git-Tag: 1_15_0~73 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f6106e6041895d05ab10fdc5383f12a3dba1a16d;p=oweals%2Fbusybox.git comment fixes, no code changes Signed-off-by: Denys Vlasenko --- diff --git a/libbb/unicode.c b/libbb/unicode.c index b977437ef..773a0744e 100644 --- a/libbb/unicode.c +++ b/libbb/unicode.c @@ -2,7 +2,7 @@ /* * Unicode support routines. * - * Copyright (C) 2008 Denys Vlasenko + * Copyright (C) 2009 Denys Vlasenko * * Licensed under GPL version 2, see file LICENSE in this tarball for details. */ @@ -84,6 +84,7 @@ static size_t wcrtomb_internal(char *s, wchar_t wc) wc >>= 6; n++; } + /* 80-7FF -> 110yyyxx 10xxxxxx */ s[1] = (wc & 0x3f) | 0x80; wc >>= 6; s[0] = wc | (uint8_t)(0x3f00 >> n);