]> sjero.net Git - wget/blob - src/string.h
[svn] Added string.c module. Updated copyright information and added names of new...
[wget] / src / string.h
1 /*  
2  *  string.h - declarations for dynamic string handling module
3  *  
4  *  Copyright (C) 2005 Free Software Foundation, Inc.
5  *  
6  *  This file is part of GNU Wget.
7  *  
8  *  GNU Wget is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  GNU Wget is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *  In addition, as a special exception, the Free Software Foundation
22  *  gives permission to link the code of its release of Wget with the
23  *  OpenSSL project's "OpenSSL" library (or with modified versions of it
24  *  that use the same license as the "OpenSSL" library), and distribute
25  *  the linked executables.  You must obey the GNU General Public License
26  *  in all respects for all of the code used other than "OpenSSL".  If you
27  *  modify this file, you may extend this exception to your version of the
28  *  file, but you are not obligated to do so.  If you do not wish to do
29  *  so, delete this exception statement from your version.
30  */  
31
32 #ifndef WGET_STRING_H
33 #define WGET_STRING_H
34
35 void escape_buffer PARAMS ((char **, size_t));
36
37 #endif /* WGET_STRING_H */