| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-Spam-Check-By: | sourceware.org |
| Date: | Thu, 7 Jan 2010 17:34:48 +0100 |
| From: | Corinna Vinschen <corinna-cygwin AT cygwin DOT com> |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: Bug printing string where the 128th char is multibyte |
| Message-ID: | <20100107163448.GJ23972@calimero.vinschen.de> |
| Reply-To: | cygwin AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| References: | <f519c7c31001041418q1c24bae9t237ee637ed20c0f6 AT mail DOT gmail DOT com> <f519c7c31001041425j4d193528gb9aeca0bf41656de AT mail DOT gmail DOT com> <loom DOT 20100104T233234-168 AT post DOT gmane DOT org> <f519c7c31001041505u30cb203ard1fe3dc010e05d79 AT mail DOT gmail DOT com> |
| MIME-Version: | 1.0 |
| In-Reply-To: | <f519c7c31001041505u30cb203ard1fe3dc010e05d79@mail.gmail.com> |
| User-Agent: | Mutt/1.5.20 (2009-06-14) |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
On Jan 4 21:05, Eduardo D'Avila wrote:
> Using the %s didn't solve the problem:
>
>
> erdavila AT antares ~/perl/feedbacks
> $ cat BUG.c
> #include <stdio.h>
>
> int main() {
> const char * str =
> "0123456789" // 0 - 9
> "0123456789" // 10 - 19
> "0123456789" // 20 - 29
> "0123456789" // 30 - 39
> "0123456789" // 40 - 49
> "0123456789" // 50 - 59
> "0123456789" // 60 - 69
> "0123456789" // 70 - 79
> "0123456789" // 80 - 89
> "0123456789" // 90 - 99
> "0123456789" // 100 - 109
> "0123456789" // 110 - 119
> "0123456ç89" // 120 - 127
> ;
>
> printf("%s", str);
>
> return 0;
> }
>
> erdavila AT antares ~/perl/feedbacks
> $ gcc -Wall BUG.c -o BUG
>
> erdavila AT antares ~/perl/feedbacks
> $ ./BUG
> ç89
That's what I see:
$ ./BUG
01234567890123456789012345678901234567890123456789012345678901234567890123456789
01234567890123456789012345678901234567890123456X89
With X being a square denoting an invalid character value. That's
exactly what I expect, given that the console runs in UTF-8 by default.
Corinna
--
Corinna Vinschen Please, send mails regarding Cygwin to
Cygwin Project Co-Leader cygwin AT cygwin DOT com
Red Hat
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |