vfs: check userland buffers before reading them.
[haiku.git] / src / tests / system / libroot / posix / tst-wprintf.c
blob6f5373b123b95c58022d49c843d628ec5bd4186c
1 #include <stdio.h>
2 #include <wchar.h>
5 int
6 main(int argc, char *argv[])
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;