diff options
Diffstat (limited to 'src/vector.c')
-rw-r--r-- | src/vector.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/vector.c b/src/vector.c index 984198f..d5ca69e 100644 --- a/src/vector.c +++ b/src/vector.c @@ -1,10 +1,5 @@ -/* $Id: vector.c,v 1.13 2005-08-15 03:54:31 rjkaes Exp $ - * - * A vector implementation. The vector can be of an arbitrary length, and - * the data for each entry is an lump of data (the size is stored in the - * vector.) - * - * Copyright (C) 2002 Robert James Kaes (rjkaes@users.sourceforge.net) +/* tinyproxy - A fast light-weight HTTP proxy + * Copyright (C) 2002 Robert James Kaes <rjkaes@users.sourceforge.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,9 +11,14 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +/* A vector implementation. The vector can be of an arbitrary length, and + * the data for each entry is an lump of data (the size is stored in the + * vector.) */ #include "tinyproxy.h" |