Lines Matching refs:strDest

172  * the terminating null character) into the array pointed to by strDest
173 * Parameter: strDest - destination 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.
185 * Parameter: strDest - destination address
191 SECUREC_API errno_t strncpy_s(char *strDest, size_t destMax, const char *strSrc, size_t count);
197 * the terminating null character) to the end of the string pointed to by strDest.
198 * Parameter: strDest - destination 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.
211 * Parameter: strDest - destination address
217 SECUREC_API errno_t strncat_s(char *strDest, size_t destMax, const char *strSrc, size_t count);
224 * Parameter: strDest - produce output according to a format,write to the character string strDest.
231 SECUREC_API int vsprintf_s(char *strDest, size_t destMax, const char *format,
239 * Parameter: strDest - produce output according to a format ,write to the character string strDest.
245 SECUREC_API int sprintf_s(char *strDest, size_t destMax, const char *format, ...) SECUREC_ATTRIBUTE(3, 4);
252 * Parameter: strDest - produce output according to a format ,write to the character string strDest.
254 * Parameter: count - do not write more than count bytes to strDest(not including the terminating null byte '\0')
260 SECUREC_API int vsnprintf_s(char *strDest, size_t destMax, size_t count, const char *format,
268 * Parameter: strDest - produce output according to a format ,write to the character string strDest.
270 * Parameter: count - do not write more than count bytes to strDest(not including the terminating null byte '\0')
275 SECUREC_API int snprintf_s(char *strDest, size_t destMax, size_t count, const char *format,
283 * Parameter: strDest - produce output according to a format ,write to the character string strDest
290 SECUREC_API int vsnprintf_truncated_s(char *strDest, size_t destMax, const char *format,
296 * Parameter: strDest - produce output according to a format,write to the character string strDest.
302 SECUREC_API int snprintf_truncated_s(char *strDest, size_t destMax,
429 * null wide character) into the array pointed to by strDest
430 * Parameter: strDest - destination 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
442 * Parameter: strDest - destination address
448 SECUREC_API errno_t wcsncpy_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc, size_t count);
454 * terminating null wide character) to the end of the wide string pointed to by strDest
455 * Parameter: strDest - destination address
460 SECUREC_API errno_t wcscat_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc);
467 * by strDest.
468 * Parameter: strDest - destination address
474 SECUREC_API errno_t wcsncat_s(wchar_t *strDest, size_t destMax, const wchar_t *strSrc, size_t count);
492 * Parameter: strDest - produce output according to a format,write to the character string strDest
499 SECUREC_API int vswprintf_s(wchar_t *strDest, size_t destMax, const wchar_t *format, va_list argList);
505 * Parameter: strDest - produce output according to a format,write to the character string strDest
511 SECUREC_API int swprintf_s(wchar_t *strDest, size_t destMax, const wchar_t *format, ...);
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);