mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-12 21:02:00 +01:00
17 lines
347 B
C
17 lines
347 B
C
/*
|
|
* decoder.h, SJ
|
|
*/
|
|
|
|
#ifndef _DECODER_H
|
|
#define _DECODER_H
|
|
|
|
void sanitiseBase64(char *s);
|
|
int decodeBase64(char *p);
|
|
void decodeQP(char *p);
|
|
void decodeHTML(char *p);
|
|
void decodeURL(char *p);
|
|
inline void utf8_encode_char(unsigned char c, unsigned char *buf, int buflen, int *len);
|
|
void utf8_encode(unsigned char *p);
|
|
|
|
#endif /* _DECODER_H */
|