piler/src/decoder.h

16 lines
248 B
C
Raw Normal View History

2011-11-14 15:57:52 +01:00
/*
* decoder.h, SJ
*/
#ifndef _DECODER_H
#define _DECODER_H
void sanitiseBase64(char *s);
int decodeBase64(char *p);
void decodeUTF8(char *p);
void decodeQP(char *p);
void decodeHTML(char *p);
void decodeURL(char *p);
#endif /* _DECODER_H */