xref: /haiku/src/tests/system/libroot/posix/tst-wprintf.c (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 #include <stdio.h>
2 #include <wchar.h>
3 
4 
5 int
6 main(int argc, char *argv[])
7 {
8 	fputws(L"Hello world!\n", stdout);
9 	wprintf (L"This %s a %ls string: %d\n", "is", L"mixed", 42);
10 	wprintf (L"%Iu\n", 0xfeedbeef);
11 	return 0;
12 }
13