00001 /* Quoted Printable encoding and decoding. 00002 * by Galt Barber */ 00003 00004 #ifndef QUOTEDP_H 00005 #define QUOTEDP_H 00006 00007 char *quotedPrintableEncode(char *input); 00008 /* Use Quoted-Printable standard to encode a string. 00009 */ 00010 00011 boolean quotedPCollapse(char *line); 00012 /* Use Quoted-Printable standard to decode a string. 00013 * Return true if the line does not end in '=' 00014 * which indicate continuation. */ 00015 00016 char *quotedPrintableDecode(char *input); 00017 /* Use Quoted-Printable standard to decode a string. Return decoded 00018 * string which will be freeMem'd. */ 00019 00020 #endif /* QUOTEDP_H */ 00021
1.5.2