Home
last modified time | relevance | path

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

/picolibc-latest/test/
Dtest-strcpy_s.c146 char buf2[50] = ""; in main() local
147 res = strcpy_s(buf2, sizeof(buf2), "world"); in main()
150 TEST_RES(strcmp(buf2, "world") == 0, "Copy to empty buffer Contents", in main()
Dtest-strncat_s.c152 char buf2[50] = ""; in main() local
153 res = strncat_s(buf2, sizeof(buf2), src, 8); in main()
157 TEST_RES(strcmp(buf2, ", world!") == 0, in main()