Array.h
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:2k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: Array.h,v 1.2 1998/07/20 17:18:46 wessels Exp $
  3.  *
  4.  * AUTHOR: Alex Rousskov
  5.  *
  6.  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
  7.  * --------------------------------------------------------
  8.  *
  9.  *  Squid is the result of efforts by numerous individuals from the
  10.  *  Internet community.  Development is led by Duane Wessels of the
  11.  *  National Laboratory for Applied Network Research and funded by
  12.  *  the National Science Foundation.
  13.  *
  14.  *  This program is free software; you can redistribute it and/or modify
  15.  *  it under the terms of the GNU General Public License as published by
  16.  *  the Free Software Foundation; either version 2 of the License, or
  17.  *  (at your option) any later version.
  18.  *  
  19.  *  This program is distributed in the hope that it will be useful,
  20.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  *  GNU General Public License for more details.
  23.  *  
  24.  *  You should have received a copy of the GNU General Public License
  25.  *  along with this program; if not, write to the Free Software
  26.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
  27.  *  
  28.  */
  29. #ifndef _ARRAY_H_
  30. #define _ARRAY_H_
  31. /* see Array.c for more documentation */
  32. typedef struct {
  33.     int capacity;
  34.     int count;
  35.     void **items;
  36. } Array;
  37. extern Array *arrayCreate();
  38. extern void arrayInit(Array * s);
  39. extern void arrayClean(Array * s);
  40. extern void arrayDestroy(Array *s);
  41. extern void arrayAppend(Array *s, void *obj);
  42. extern void arrayPreAppend(Array * s, int app_count);
  43. #endif /* ndef _ARRAY_H_ */