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

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: Stack.h,v 1.8 1998/07/20 17:18:48 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 _STACK_H_
  30. #define _STACK_H_
  31. #include "Array.h"
  32. typedef Array Stack;
  33. #define stackCreate arrayCreate
  34. #define stackInit arrayInit
  35. #define stackClean arrayClean
  36. #define stackDestroy arrayDestroy
  37. extern void *stackPop(Stack *s);
  38. #define stackPush arrayAppend
  39. #define stackPrePush arrayPreAppend
  40. extern void *stackTop(Stack *s);
  41. #endif /* ndef _STACK_H_ */