X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=string.c;h=07dd8459cda272666a4714941549d68bec1cc9b9;hp=d42a31b5cb84df53ea8c6d3efed7f5d8f5c4c4af;hb=f638c88fad8a1350cf56d5f60ddef297ece92805;hpb=4e757d60f7642c61e09a20a2a1de442b23208966 diff --git a/string.c b/string.c index d42a31b..07dd845 100644 --- a/string.c +++ b/string.c @@ -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. *