X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=string.c;h=946faabdfd09ce688059c5d8ce15e140af282a29;hb=296cf54c41e837568ac77570d58a133c41db0b63;hp=17edffc5e9d9bef56d3f491ac12a83a01c2494cd;hpb=d2ce6e60cb915dff3a0920a0b48f786435bd4ec8;p=adu.git diff --git a/string.c b/string.c index 17edffc..946faab 100644 --- a/string.c +++ b/string.c @@ -138,7 +138,7 @@ __must_check __printf_1_2 __malloc char *make_message(const char *fmt, ...) * Append \p b to \p a. * * \return If \a a is \p NULL, return a pointer to a copy of \a b, i.e. - * para_strcat(NULL, b) is equivalent to para_strdup(b). If \a b is \p NULL, + * adu_strcat(NULL, b) is equivalent to adu_strdup(b). If \a b is \p NULL, * return \a a without making a copy of \a a. Otherwise, construct the * concatenation \a c, free \a a (but not \a b) and return \a c. * @@ -340,7 +340,7 @@ void free_argv(char **argv) * * In contrast to gengetopt's string parser, double quotes, backslash-escaped * characters and special characters like \p \\n are honored. The result - * contains pointers to copies of the words contained in \line and has to be + * contains pointers to copies of the words contained in \a line and has to be * freed by using \ref free_argv(). * * \param line The line to be split.