Lines Matching refs:swscanf
30 wchar_t wstr[] = L"swscanf 123";
33 int result = swscanf(wstr, L"%ls %d", tmp, &i);
35 t_error("%s swscanf failed\n", __func__);
42 if (wcscmp(tmp, L"swscanf")) {
43 t_error("%s wide string is %s not swscanf\n", __func__, tmp);
54 wchar_t wstr[] = L"swscanf 123";
58 int result = swscanf(wstr, L"%ls %ls", tmp1, tmp2);
60 t_error("%s swscanf failed\n", __func__);
63 if (wcscmp(tmp1, L"swscanf")) {
64 t_error("%s tmp1 = %s is not want swscanf\n", __func__, tmp1);
78 wchar_t wstr[] = L"swscanf 123";
80 int result = swscanf(wstr, L"%d %d", &i, &j);
82 t_error("%s swscanf expect failed\n", __func__);