blob: 2a50da9e19a5036ec76e7c4f3380fbeb72bb8c37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __RECODE_H
#define __RECODE_H
char *recode_in (const char *str, const char *target);
char *recode_out (const char *str, const char *target);
gboolean is_valid_charset(const char *charset);
void recode_init (void);
void recode_deinit (void);
#endif /* __RECODE_H */
|