1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00
* stdio-common/tiformat.c (sprint_ints): Add tests for I flag.
	* libio/tst_wprintf.c (main): Add test for I flag.
This commit is contained in:
Ulrich Drepper
2000-06-17 19:22:43 +00:00
parent 9d54e98421
commit ce723583fc
3 changed files with 13 additions and 0 deletions

View File

@ -6,5 +6,6 @@ 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;
}