Home
last modified time | relevance | path

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

/xnu-11417.101.15/tests/
H A Dtest_strings.c218 #define T_CPY(A, AS, B, BS) T_ASSERT_EQ(strbufcpy_impl((A), (AS), (B), (BS)), (char *)(A), "copy '%… macro
222 T_CPY(dst, sizeof(dst), hello, sizeof(hello));
228 T_CPY(dst, sizeof(dst), aaa, sizeof(aaa));
234 T_CPY(dst, sizeof(dst), "bbb", 3);
239 T_CPY(hw1 + 6, sizeof(hw1) - 6, hw1, sizeof(hw1));
243 T_CPY(hw2, sizeof(hw2), hw2 + 6, sizeof(hw2) - 6);
245 #undef T_CPY