Home
last modified time | relevance | path

Searched refs:tarStr (Results 1 – 2 of 2) sorted by relevance

/kernel/liteos_a/testsuites/unittest/libc/io/full/
DIt_stdio_fputws_001.cpp37 wchar_t tarStr[20] = {0}; // 20, target buffer size in Testcase() local
67 wchar_t *p = fgetws(tarStr, 6, testFile); // 6, "hello" length and '\0' in Testcase()
68 ICUNIT_GOTO_EQUAL(p, tarStr, p, EXIT); in Testcase()
69 nRet = wcscmp(srcStr, tarStr); in Testcase()
DIt_stdio_fwprintf_001.cpp36 wchar_t tarStr[20] = {0}; // 20, buffer size in Testcase() local
67 p = fgetws(tarStr, 16, testFile); // 16, read size,total write and '\0' in Testcase()
68 nRet = wcscmp(L"hello world 666", tarStr); in Testcase()