Searched refs:wuf (Results 1 - 3 of 3) sorted by relevance

/ast/src/cmd/tests/sfio/
H A Dtwc.c36 wchar_t wuf[256]; local
46 swprintf(wuf, sizeof(wuf), L"%ls", L"hello-world");
47 wcstombs(str, wuf, sizeof(str));
51 swprintf(wuf, sizeof(wuf), L"%S", L"hello-world");
52 wcstombs(str, wuf, sizeof(str));
57 n = swscanf(L" hello-world ", L"%ls", wuf);
62 wcstombs(str, wuf, sizeof(str));
67 n = swscanf(L" hello-world ", L"%S", wuf);
[all...]
H A Dtwchar.c36 wchar_t wuf[256]; local
46 swprintf(wuf, sizeof(wuf), L"%ls", L"hello-world");
47 wcstombs(str, wuf, sizeof(str));
51 swprintf(wuf, sizeof(wuf), L"%S", L"hello-world");
52 wcstombs(str, wuf, sizeof(str));
56 n = swscanf(L" hello-world ", L"%ls", wuf);
61 wcstombs(str, wuf, sizeof(str));
66 n = swscanf(L" hello-world ", L"%S", wuf);
[all...]
/ast/src/lib/libast/stdio/
H A Dvfwscanf.c68 wchar_t wuf[2]; local
71 if (sfread(w->f, wuf, sizeof(wuf[0])) != sizeof(wuf[0]))
73 wuf[1] = 0;
74 return wcstombs(buf, wuf, size);
78 r = sfread(w->f, wuf, sizeof(wuf[0]));
79 if (r != sizeof(wuf[0]))
81 wuf[
[all...]

Completed in 14 milliseconds