X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/b5ea4de3ac1c61ef84c21f4e3ceff2181d23e456..e8293f011ddae012752e35f0cc36e9a12665fbf2:/darray.c diff --git a/darray.c b/darray.c index c1ee606..05ba81e 100644 --- a/darray.c +++ b/darray.c @@ -1,13 +1,13 @@ /* -*-c-*- * - * $Id: darray.c,v 1.6 2000/07/16 12:29:16 mdw Exp $ + * $Id: darray.c,v 1.7 2004/04/08 01:36:11 mdw Exp $ * * Dynamically growing dense arrays * * (c) 1999 Straylight/Edgeware */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of the mLib utilities library. * @@ -15,41 +15,18 @@ * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. - * + * * mLib is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. - * + * * You should have received a copy of the GNU Library General Public * License along with mLib; if not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: darray.c,v $ - * Revision 1.6 2000/07/16 12:29:16 mdw - * Change to arena `realloc' interface, to fix a design bug. - * - * Revision 1.5 2000/06/17 10:37:39 mdw - * Add support for arena management. - * - * Revision 1.4 1999/11/06 12:40:45 mdw - * Minor changes to allocation strategy. - * - * Revision 1.3 1999/10/29 22:59:22 mdw - * New array adjustment macros for unsigned arguments. - * - * Revision 1.2 1999/10/28 22:05:28 mdw - * Modify and debug allocation routines. - * - * Revision 1.1 1999/10/22 22:37:26 mdw - * New dynamic array implementation replaces `dynarray.h'. - * - */ - /*----- Header files ------------------------------------------------------*/ #include @@ -261,7 +238,7 @@ void *da_shunt(da_base *b, void *v, size_t sz, size_t n) } /* --- Fill in the other parts of the base structure --- */ - + b->off = nsz - slots; b->sz = slots; b->unshift = b->push = 0;