mirror of
https://github.com/irssi/irssi.git
synced 2025-04-25 20:41:23 -05:00
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3295 dbcabf3a-b0e7-0310-adc4-f8d773084564
12 lines
276 B
C
12 lines
276 B
C
#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 */
|