Symbol: fwprintf
headers/posix/wchar.h
61
extern int fwprintf(FILE *stream, const wchar_t *format, ...);
src/system/libroot/posix/glibc/libio/fwprintf.c
38
weak_alias (__fwprintf, fwprintf)
src/system/libroot/posix/glibc/wcsmbs/wchar.h
337
extern int fwprintf (__FILE *__restrict __stream,
src/tests/system/libroot/posix/fwide_test.c
23
fwprintf(stderr, L"stderr should now be set to wide mode ...\n");
src/tests/system/libroot/posix/fwide_test.c
31
fwprintf(stdout, L"%ls", L"this should *not* be visible!\n");
src/tests/system/libroot/posix/fwide_test.c
34
fwprintf(stdout, L"%s", "this should *not* be visible!\n");
src/tests/system/libroot/posix/fwide_test.c
37
fwprintf(stderr, L"%s", "this *should* be visible!\n");
src/tests/system/libroot/posix/fwide_test.c
40
fwprintf(stderr, L"%ls", L"this *should* be visible!\n");
src/tests/system/libroot/posix/fwide_test.c
45
fwprintf(stdout, L"%ls", L"this should *not* be visible!\n");
src/tests/system/libroot/posix/fwide_test.c
48
fwprintf(stdout, L"%s", "this should *not* be visible!\n");
src/tests/system/libroot/posix/fwide_test.c
51
fwprintf(stderr, L"%s", "this *should* be visible! (äöúß)\n");
src/tests/system/libroot/posix/fwide_test.c
54
fwprintf(stderr, L"%ls", L"this *should* be visible! (äöúß)\n");
src/tests/system/libroot/posix/tst-wprintf2.c
38
fwprintf(fp,L"test start" );
src/tests/system/libroot/posix/tst-wprintf2.c
39
fwprintf(fp, L" int %d\n", a);
src/tests/system/libroot/posix/tst-wprintf2.c
42
fwprintf(fp, L"1[%6.3s]\n", argv[1]);
src/tests/system/libroot/posix/tst-wprintf2.c
53
fwprintf(fp, L"hello.\n");