Intel® Integrated Performance Primitives Developer Guide and Reference

ID 790148
Date 11/07/2023
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

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

NOTE:
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 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.