X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=string.c;h=07dd8459cda272666a4714941549d68bec1cc9b9;hp=aec62ae9918f298578ec4881d7e9eebd63a1197f;hb=f638c88fad8a1350cf56d5f60ddef297ece92805;hpb=26ace9b8c1dc872e5da1b1122b45f01419761aab diff --git a/string.c b/string.c index aec62ae..07dd845 100644 --- a/string.c +++ b/string.c @@ -4,7 +4,7 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file string.c Memory allocation and string handling functions. */ +/** \file string.c \brief Memory allocation and string handling functions. */ #include "adu.h" #include "string.h" @@ -12,7 +12,7 @@ #include "error.h" /** - * Paraslash's version of realloc(). + * Adu's version of realloc(). * * \param p Pointer to the memory block, may be \p NULL. * \param size The desired new size. @@ -41,7 +41,7 @@ __must_check __malloc void *adu_realloc(void *p, size_t size) } /** - * Paraslash's version of malloc(). + * Adu's version of malloc(). * * \param size The desired new size. * @@ -66,7 +66,7 @@ __must_check __malloc void *adu_malloc(size_t size) } /** - * Paraslash's version of calloc(). + * Adu's version of calloc(). * * \param size The desired new size. * @@ -86,7 +86,7 @@ __must_check __malloc void *adu_calloc(size_t size) } /** - * Paraslash's version of strdup(). + * Adu's version of strdup(). * * \param s The string to be duplicated. *