]> code.citadel.org Git - citadel.git/blob - rss2ctdl/conversions.h
a281625c9d34a20195e5d9efb5968d59e3b3269d
[citadel.git] / rss2ctdl / conversions.h
1 /*
2  * $Id$
3  * 
4  * Copyright 2003-2004 Oliver Feiler <kiza@kcore.de> and
5  *                     Rene Puls <rpuls@gmx.net>
6  *
7  * conversions.h
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  *
13  * This program 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  *
22  */
23
24 #ifndef CONVERSIONS_H
25 #define CONVERSIONS_H
26
27 char *base64encode(char const *inbuf, unsigned int inbuf_size);
28 char* decodechunked(char * chunked, unsigned int *inputlen);
29 void CleanupString (char * string, int tidyness);
30
31 #endif