Concatenates several strings together and inserts symbol delimiters between them.
IppStatus ippsConcatC_8u_D2L(const Ipp8u* const pSrc[], const int* pSrcLen[], int numSrc, Ipp8u delim, Ipp8u* pDst);
IppStatus ippsConcatC_16u_D2L(const Ipp16u* const pSrc[], const int* pSrcLen[], int numSrc, Ipp16u delim, Ipp16u* pDst);
pSrc |
Pointer to the array of source strings. |
pSrcLen |
Pointer to the array of lengths of the source strings. |
numSrc |
Number of source strings. |
delim |
Symbol delimiter. |
pDst |
Pointer to the destination string. |
The function ippsConcatC is declared in the ippch.h file. This function concatenates numSrc strings pSrc together and inserts a specified delimiter symbol delim between them in the resulting string pDst.
Code example above shows how to use the function ippsConcatC_8u_D2L.
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. |
Copyright © 2000 - 2010, Intel Corporation. All rights reserved.