Lines Matching defs:strncat_s
11 * Description: strncat_s function
34 SECUREC_ERROR_INVALID_PARAMTER("strncat_s");
37 SECUREC_ERROR_BUFFER_OVERLAP("strncat_s");
43 SECUREC_ERROR_INVALID_PARAMTER("strncat_s");
46 SECUREC_ERROR_INVALID_RANGE("strncat_s");
56 * The strncat_s function appends not more than n successive characters
59 * The strncat_s function try to append the first D characters of strSrc to
87 errno_t strncat_s(char *strDest, size_t destMax, const char *strSrc, size_t count)
90 SECUREC_ERROR_INVALID_RANGE("strncat_s");
95 SECUREC_ERROR_INVALID_PARAMTER("strncat_s");
110 SECUREC_ERROR_INVALID_RANGE("strncat_s");
117 EXPORT_SYMBOL(strncat_s);