X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Farray.h;h=fd428dbbd985990d87d034e2135f90537c7d5a93;hb=384f965fba126c4724bffb6f7e2d30d8b7fb50cb;hp=b4aad9f7fcf156d000ec9be59fadeb0d06958a73;hpb=b7033e147890b3ad0d7fe1520a1db4e4ce040c7b;p=ngircd-alex.git diff --git a/src/ngircd/array.h b/src/ngircd/array.h index b4aad9f7..fd428dbb 100644 --- a/src/ngircd/array.h +++ b/src/ngircd/array.h @@ -7,13 +7,16 @@ * * libarray - dynamically allocate arrays. * Copyright (c) 2005 Florian Westphal (westphal@foo.fh-furtwangen.de) - * - * $Id: array.h,v 1.4 2005/08/30 13:36:32 fw Exp $ */ #ifndef array_h_included #define array_h_included +/** + * @file + * Functions to dynamically allocate arrays (header). + */ + #include "portab.h" typedef struct { @@ -81,7 +84,7 @@ extern void* array_get PARAMS((array* a, size_t membersize, size_t pos)); /* free the contents of this array. */ extern void array_free PARAMS((array* a)); -/* overwrite array with zeroes before free */ +/* overwrite array with zeros before free */ extern void array_free_wipe PARAMS((array* a)); /* return pointer to first element in this array */