~ubuntu-branches/ubuntu/edgy/curl/edgy

« back to all changes in this revision

Viewing changes to lib/escape.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-06-29 15:04:24 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060629150424-pn00qumt9sml8p4m
Tags: 7.15.4-1ubuntu1
Synchronize to Debian. Only change left: Removal of stunnel and
libdb4.2-dev build dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 *                            | (__| |_| |  _ <| |___
9
9
 *                             \___|\___/|_| \_\_____|
10
10
 *
11
 
 * Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
 
11
 * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
12
12
 *
13
13
 * This software is licensed as described in the file COPYING, which
14
14
 * you should have received as part of this distribution. The terms
21
21
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22
22
 * KIND, either express or implied.
23
23
 *
24
 
 * $Id: escape.h,v 1.12 2005/10/31 08:47:54 bagder Exp $
 
24
 * $Id: escape.h,v 1.14 2006-04-07 21:50:47 bagder Exp $
25
25
 ***************************************************************************/
26
26
/* Escape and unescape URL encoding in strings. The functions return a new
27
27
 * allocated string or NULL if an error occurred.  */
28
28
 
29
 
char *curl_escape(const char *string, int length);
30
 
char *curl_unescape(const char *string, int length);
31
29
 
32
30
#endif