]> git.tuebingen.mpg.de Git - adu.git/commitdiff
string.c: Replace "paralash" by "adu" in source code documentation.
authorAndre Noll <maan@systemlinux.org>
Mon, 10 Nov 2008 21:30:09 +0000 (22:30 +0100)
committerAndre Noll <maan@systemlinux.org>
Mon, 10 Nov 2008 21:30:09 +0000 (22:30 +0100)
string.c

index d42a31b5cb84df53ea8c6d3efed7f5d8f5c4c4af..07dd8459cda272666a4714941549d68bec1cc9b9 100644 (file)
--- 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.
  *