This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: B19, EGCS 1.1: Strcasecmp uses uppercase?


Steven van Dijk <steven@cs.uu.nl> writes:
> 
> #include <stdio.h>
> #include <string.h>
> 
> main()
> {
>         char * s1 = "String";
>         char * s2 = "S_";
> 
>         printf("Comparing s1 with s2 returns: %d\n", strcasecmp(s1,s2));
> }
> 
> On my system (using b19, no patches and EGCS 1.1) I get:
> Comparing s1 with s2 returns: -11
> 
> and on the Unix system I get:
> Comparing s1 with s2 returns: 21

This is a bug in newlib string handling routines. I'll submit a patch to
the cygwin folks.

Thanks for pointing it out with a test case. There is a workaround until
the patch makes it in -- always specify the *longer* string as the *second*
argument.

Regards,
Mumit

-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]