forgot to add

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3284 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2004-08-20 00:27:05 +00:00 committed by cras
commit df9f46cf4d
5 changed files with 372 additions and 0 deletions

10
src/core/recode.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef __RECODE_H
#define __RECODE_H
char *recode_in (const char *str, const char *target);
char *recode_out (const char *str, const char *target);
void recode_init (void);
void recode_deinit (void);
#endif /* __RECODE_H */