* mh_xmalloc(), mh_xrealloc(), pwd(): Add comments describing the purpose
authorJosh Bressers <josh@bress.net>
Wed, 4 Jan 2006 02:10:25 +0000 (02:10 +0000)
committerJosh Bressers <josh@bress.net>
Wed, 4 Jan 2006 02:10:25 +0000 (02:10 +0000)
  of the function.

sbr/utils.c

index c25e02d..2120b84 100644 (file)
@@ -13,6 +13,9 @@
 #include <h/utils.h>
 #include <stdlib.h>
 
+/*
+ * Safely call malloc
+ */
 void *
 mh_xmalloc(size_t size)
 {
@@ -28,6 +31,9 @@ mh_xmalloc(size_t size)
     return memory;
 }
 
+/*
+ * Safely call realloc
+ */
 void *
 mh_xrealloc(void *ptr, size_t size)
 {
@@ -42,6 +48,11 @@ mh_xrealloc(void *ptr, size_t size)
 
     return memory;
 }
+
+/*
+ * Return the present working directory, if the current directory does not
+ * exist, or is too long, make / the pwd.
+ */
 char *
 pwd(void)
 {