Show
Ignore:
Timestamp:
2001-02-13 14:06:14 (8 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Change charset-hook's behaviour.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.h

    r2239 r2289  
    2222#include <iconv.h> 
    2323 
    24 int mutt_convert_string (char **, const char *, const char *); 
     24int mutt_convert_string (char **, const char *, const char *, int); 
    2525 
    26 iconv_t mutt_iconv_open (const char *, const char *); 
     26iconv_t mutt_iconv_open (const char *, const char *, int); 
    2727size_t mutt_iconv (iconv_t, const char **, size_t *, char **, size_t *, const char **, const char *); 
    2828 
    2929typedef void * FGETCONV; 
    3030 
    31 FGETCONV *fgetconv_open (FILE *, const char *, const char *); 
     31FGETCONV *fgetconv_open (FILE *, const char *, const char *, int); 
    3232int fgetconv (FGETCONV *); 
    3333void fgetconv_close (FGETCONV **); 
     
    3535void mutt_set_langinfo_charset (void); 
    3636 
     37#define M_ICONV_HOOK_FROM 1 
     38#define M_ICONV_HOOK_TO   2 
     39 
    3740#endif /* _CHARSET_H */