]> git.ipfire.org Git - thirdparty/squid.git/blame - lib/Array.cc
SourceFormat Enforcement
[thirdparty/squid.git] / lib / Array.cc
CommitLineData
f12361a1 1/*
262a0e14 2 * $Id$
f12361a1 3 *
4 * AUTHOR: Alex Rousskov
5 *
2b6662ba 6 * SQUID Web Proxy Cache http://www.squid-cache.org/
e25c139f 7 * ----------------------------------------------------------
f12361a1 8 *
2b6662ba 9 * Squid is the result of efforts by numerous individuals from
10 * the Internet community; see the CONTRIBUTORS file for full
11 * details. Many organizations have provided support for Squid's
12 * development; see the SPONSORS file for full details. Squid is
13 * Copyrighted (C) 2001 by the Regents of the University of
14 * California; see the COPYRIGHT file for full details. Squid
15 * incorporates software developed and/or copyrighted by other
16 * sources; see the CREDITS file for full details.
f12361a1 17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
26ac0430 22 *
f12361a1 23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
26ac0430 27 *
f12361a1 28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
cbdec147 30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
e25c139f 31 *
f12361a1 32 */
33
34/*
35 * Array is an array of (void*) items with unlimited capacity
36 *
37 * Array grows when arrayAppend() is called and no space is left
38 * Currently, array does not have an interface for deleting an item because
39 * we do not need such an interface yet.
40 */
41
f7f3304a 42#include "squid.h"
2d72d4fd 43#include "Array.h"
44
f12361a1 45#if HAVE_ASSERT_H
46#include <assert.h>
47#endif
48#if HAVE_STRING_H
49#include <string.h>
50#endif