Lines Matching refs:src
28 wchar_t src[] = L"Source string";
31 wchar_t *result = wcpncpy(dst, src, src_len + 1);
35 if (wcscmp(src, dst) != 0) {
36 t_error("%s wcpncpy get dst is %ls are not want %ls\n", __func__, dst, src);
47 wchar_t src[] = L"Source string";
50 wchar_t *result = wcpncpy(dst, src, 2);
55 t_error("%s wcpncpy get dst is %ls are not want %ls\n", __func__, dst, src);
66 wchar_t src[] = L"Source string";
69 wchar_t *result = wcpncpy(dst, src, 17);
73 if (wcscmp(src, dst) != 0) {
74 t_error("%s wcpncpy get dst is %ls are not want %ls\n", __func__, dst, src);