strlist

Appends multiple strings together

Local Servers:nonblocking
Remote Servers:N/A
Service:String Manipulation

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

strlist returns the value of dst.

Remarks

The strlist function appends multiple strings pointed to by src1, src2, ..., srcn to the string pointed to by dst. srcn, the last argument in the function, must be NULL. This function is only supported in CLIB V 4.11 or above.