00001 /* 00002 Copyright (C) 2008- The University of Notre Dame 00003 This software is distributed under the GNU General Public License. 00004 See the file COPYING for details. 00005 */ 00006 00007 #ifndef URL_DECODE_H 00008 #define URL_ENCODE_H 00009 00025 void url_encode(const char *source, char *target, int length); 00026 00036 void url_decode(const char *source, char *target, int length); 00037 00038 #endif