]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/array.c
Only log "IDENT ... no result" when IDENT was looked up
[ngircd-alex.git] / src / ngircd / array.c
index 0fa960857dda156fe1ee8eeaf7ae8ec4040403c6..ad4f8dac7cda4a57fd5f57a4901829872900e4ac 100644 (file)
@@ -5,15 +5,18 @@
  * (at your option) any later version.
  * Please read the file COPYING, README and AUTHORS for more information.
  *
- * functions to dynamically allocate arrays.
+ * libarray - dynamically allocate arrays.
  * Copyright (c) 2005 Florian Westphal (westphal@foo.fh-furtwangen.de)
- *
+ */
+
+/**
+ * @file
+ * Functions to dynamically allocate arrays.
  */
 
 #include "array.h"
 
 #include <assert.h>
-
 #include <stdlib.h>
 #include <string.h>
 
@@ -22,9 +25,9 @@
 /* Enable more Debug messages in alloc / append / memmove code. */
 /* #define DEBUG_ARRAY */
 
+#define array_UNUSABLE(x)      ( !(x)->mem )
 
 
-#define array_UNUSABLE(x)      ( !(x)->mem )
 static bool
 safemult_sizet(size_t a, size_t b, size_t *res)
 {