strlist

Appends multiple strings to a specified string.

Library:LibC
Service:Characters and Strings

Syntax

  #include <string.h> 
   
  char *strlist (
     char         *dst,   
     const char   *src1, 
     ...);
  

Parameters

dst

(OUT) Points to the string to which to append a copy of another string.

src1 ... srcn

(IN) Points to the strings to be appended.

Return Values

Returns the value of dst.

Remarks

The last argument in the function must be NULL.