Home | History | Annotate | Download | only in tests

Lines Matching full:strncat

369   char* res = strncat(buf, "01234", sizeof(buf) - strlen(buf) - 1);
382 char* res = strncat(buf, "0123456789", 5);
395 char* res = strncat(buf, "01234567", 8);
405 char* res = strncat(buf, "01234567", 9);
617 TEST(STRING_TEST, strncat) {
635 ASSERT_TRUE(strncat(state.ptr2, state.ptr1, actual) == state.ptr2);