Lines Matching refs:strSrc

171  * Description: The strcpy_s function copies the string pointed to by strSrc (including
175 * Parameter: strSrc - source address
178 SECUREC_API errno_t strcpy_s(char *strDest, size_t destMax, const char *strSrc);
184 * the terminating null character) from the array pointed to by strSrc to the array pointed to by strDest.
187 * Parameter: strSrc - source address
191 SECUREC_API errno_t strncpy_s(char *strDest, size_t destMax, const char *strSrc, size_t count);
196 * Description: The strcat_s function appends a copy of the string pointed to by strSrc (including
200 * Parameter: strSrc - source address
203 SECUREC_API errno_t strcat_s(char *strDest, size_t destMax, const char *strSrc);
210 * from the array pointed to by strSrc to the end of the string pointed to by strDest.
213 * Parameter: strSrc - source address
217 SECUREC_API errno_t strncat_s(char *strDest, size_t destMax, const char *strSrc, size_t count);
428 * Description: The wcscpy_s function copies the wide string pointed to by strSrc(including the terminating
432 * Parameter: strSrc - source address
435 SECUREC_API errno_t wcscpy_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc);
441 * terminating null wide character) from the array pointed to by strSrc to the array pointed to by strDest
444 * Parameter: strSrc - source address
448 SECUREC_API errno_t wcsncpy_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc, size_t count);
453 * Description: The wcscat_s function appends a copy of the wide string pointed to by strSrc (including the
457 * Parameter: strSrc - source address
460 SECUREC_API errno_t wcscat_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc);
466 * terminating null wide character) from the array pointed to by strSrc to the end of the wide string pointed to
470 * Parameter: strSrc - source address
474 SECUREC_API errno_t wcsncat_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc, size_t count);
578 extern errno_t strncpy_error(char *strDest, size_t destMax, const char *strSrc, size_t count);
579 extern errno_t strcpy_error(char *strDest, size_t destMax, const char *strSrc);