[RFC] collate_members_wchar_t.cc
Peter Schmid
schmid@snake.iap.physik.tu-darmstadt.de
Sat Mar 9 14:00:00 GMT 2002
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
More information about the Libstdc++
mailing list