Lines Matching defs:stpcpy
307 // stpcpy()
315 #define stpcpy(a,b) __stpcpy_chk(a,b,(size_t)-1)
319 #define stpcpy BUILTIN(stpcpy)
320 char *stpcpy(char *restrict s1, const char *restrict s2);
328 clang_analyzer_eval(stpcpy(x, y) == &x[strlen(y)]); // expected-warning{{TRUE}}
336 stpcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
342 stpcpy(x, y); // no-warning