This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [RFC] collate_members_wchar_t.cc


When I compile the following test case by gcc 3.1 20020306 and run the
executable on my system, i686-pc-linux-gnu, glibc 2.2.4 + patches
(glibc-2.2.4-65), SuSE 7.3

#include <wchar.h>
#include <locale.h>
#include <stdio.h>
#include <string.h>

int main()
{
  setlocale(LC_ALL, "de_DE");
  int i = wcscoll (L"Äuglein", L"Augment");
  printf("result of the wide string comparison: %i\n", i);
  i = strcoll ("Äuglein", "Augment");
  printf("result of the string comparison: %i\n", i);
  return 0;
}

the output is:

result of the wide string comparison: 20
result of the string comparison: -1

Therefore, maybe my copy of glibc is not recent enough.

Hope this helps,

Peter Schmid



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