repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
headers/bsd: Add sys/queue.h.
[haiku.git]
/
src
/
tests
/
system
/
libroot
/
posix
/
tst-wprintf.c
blob
6f5373b123b95c58022d49c843d628ec5bd4186c
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
}