diff -r 540d99722f1f -r 7fb0f74517c5 ucx/string.h --- a/ucx/string.h Mon Jul 22 11:53:39 2013 +0200 +++ b/ucx/string.h Mon Jul 22 13:45:49 2013 +0200 @@ -142,14 +142,14 @@ * mystring.ptr[mystring.length]='\0' after calling this * function * - * + * + * @param dest new sstr_t with capacity information and allocated memory * @param count the total number of strings to concatenate - * @param dest new sstr_t with capacity information and allocated memory * @param src the first string * @param ... all other strings * @return the argument for dest is returned */ -sstr_t sstrncat(size_t count, sstr_t dest, sstr_t src, ...); +sstr_t sstrncat(sstr_t dest, size_t count, sstr_t src, ...); /**