Home | History | Annotate | Download | only in Checkers

Lines Matching full:strncat

1404   //char *strncat(char *restrict s1, const char *restrict s2, size_t n);
1451 // If the function is strncpy, strncat, etc... it is bounded.
1491 // For strncat, the check is strlen(dst) + lenVal < sizeof(dst)
1511 // (Yes, strncpy and strncat differ in how they treat termination.
1512 // strncat ALWAYS terminates, but strncpy doesn't.)
1589 // If this is an appending function (strcat, strncat...) then set the
1982 else if (C.isCLibraryFunction(FDecl, "strncat"))