Visible to Intel only — GUID: GUID-141D572A-0727-49EE-B62C-880590D31667
Visible to Intel only — GUID: GUID-141D572A-0727-49EE-B62C-880590D31667
ConcatC
DEPRECATED. Concatenates several strings together and inserts symbol delimiters between them.
Syntax
IppStatus ippsConcatC_8u_D2L(const Ipp8u* const pSrc[], const int srcLen[], int numSrc, Ipp8u delim, Ipp8u* pDst);
Include Files
ippch.h
Domain Dependencies
Headers: ippcore.h, ippvm.h, ipps.h
Libraries: ippcore.lib, ippvm.lib, ipps.lib
Parameters
pSrc |
Pointer to the array of source strings. |
srcLen |
Pointer to the array of lengths of the source strings. |
numSrc |
Number of source strings. |
delim |
Symbol delimiter. |
pDst |
Pointer to the destination string. |
Description
This function concatenates numSrc strings pSrc together and inserts a specified delimiter symbol delim between them in the resulting string pDst.
Code example shows how to use the function ippsConcatC_8u_D2L.
Return Values
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error condition if at least one of the specified pointers is NULL. |
ippStsLengthErr |
Indicates an error condition if srcLen[i] is negative for i < numSrc. |
ippStsSizeErr |
Indicates an error condition if numSrc is equal to or less than 0. |