stock

xs_implode

Syntax

stock xs_implode(output[], outsize, delimiter, const input[][], elemsnum)

Description

The opposite of xs_explode(). Takes an array of strings and puts them together
in a single string, delimeted by the @delimeter character.

Parameters

output The string to store the impoded string into.
outsize The size of the output buffer.
delimeter The character to put between imploded strings.
input The array of strings to implode.
elemsnum The number of strings in the input array.

Return

The number of characters in the final output buffer.