glibc/libio/tst_wprintf.c
Ulrich Drepper ce723583fc Update.
* stdio-common/tiformat.c (sprint_ints): Add tests for I flag.
	* libio/tst_wprintf.c (main): Add test for I flag.
2000-06-17 19:22:43 +00:00

12 lines
224 B
C

#include <stdio.h>
#include <wchar.h>
int
main (int argc, char *argv[])
{
fputws (L"Hello world!\n", stdout);
wprintf (L"This %s a %ls string: %d\n", "is", L"mixed", 42);
wprintf (L"%Iu\n", 0xfeedbeef);
return 0;
}