23
strxmov(dst, src1, ..., srcn, NullS)
23
strxmov(dst, src1, ..., srcn, (char *))
24
24
moves the concatenation of src1,...,srcn to dst, terminates it
25
25
with a NUL character, and returns a pointer to the terminating NUL.
26
26
It is just like strmov except that it concatenates multiple sources.
27
27
Beware: the last argument should be the null character pointer.