Lines Matching defs:strcat_s
11 * Description: strcat_s function
33 SECUREC_ERROR_INVALID_PARAMTER("strcat_s");
36 SECUREC_ERROR_BUFFER_OVERLAP("strcat_s");
42 SECUREC_ERROR_INVALID_PARAMTER("strcat_s");
45 SECUREC_ERROR_INVALID_RANGE("strcat_s");
54 * The strcat_s function appends a copy of the string pointed to by strSrc (including the terminating null character)
57 * strcat_s will return EOVERLAP_AND_RESET if the source and destination strings overlap.
81 errno_t strcat_s(char *strDest, size_t destMax, const char *strSrc)
84 SECUREC_ERROR_INVALID_RANGE("strcat_s");
88 SECUREC_ERROR_INVALID_PARAMTER("strcat_s");
99 EXPORT_SYMBOL(strcat_s);