Lines Matching defs:target
23 * @tc.desc : Find the first occurrence of a wide character in the target array
29 wchar_t target = L'C';
31 wchar_t *result = wmemchr(str, target, sz);
33 t_error("%s not found target ch\n", __func__);
45 wchar_t target = L'H';
47 wchar_t *result = wmemchr(str, target, sz);
49 t_error("%s found target ch\n", __func__);
61 wchar_t target = L'C';
63 wchar_t *result = wmemchr(str, target, sz);
65 t_error("%s found target ch", __func__);