ConcatC
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 is deprecated and will be removed in a future release. If you have concerns, open a ticket and provide feedback at
https://supporttickets.intel.com/.
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 isNULL.
- ippStsLengthErr
- Indicates an error condition ifsrcLen[i]is negative fori <numSrc.
- ippStsSizeErr
- Indicates an error condition ifnumSrcis equal to or less than 0.