1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-25 22:22:37 +02:00
libunwind-eh_elf/tests/ppc64-test-wchar.c
Jose Flavio Aguilar Paulino b33021e4b2 Add PPC64 support.
2007-08-02 09:59:43 -06:00

21 lines
423 B
C

#include <wchar.h>
#include <stdio.h>
main ()
{
wchar_t *wstring =
L"Now is the time for all good men to come to the aid of their country";
int i;
int ret;
printf("wcslen(wstring) = %d\n", wcslen(wstring));
for (i = 0; i < wcslen (wstring); i++)
{
ret = printf ("%lc", wstring[i]);
if (ret != 1) {
printf("printf returned: %d\n", ret);
perror("Linux says");
}
}
printf("\n");
}