Searched refs:buf2 (Results 1 – 2 of 2) sorted by relevance
/picolibc-latest/test/ |
D | test-strcpy_s.c | 146 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()
|
D | test-strncat_s.c | 152 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()
|