Changeset 179:f133cf9759eb for charset.h

Show
Ignore:
Timestamp:
1998-09-15 13:53:17 (10 years ago)
Author:
Thomas Roessler <roessler@…>
Branch:
HEAD
Message:

Adding basic UTF-8 support.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.h

    r173 r179  
    2929{ 
    3030  CHARSET_MAP *map; 
    31 } CHARSET; 
    32    
    33 CHARSET     *mutt_get_charset(const char *); 
     31}  
     32CHARSET; 
     33 
     34CHARSET *mutt_get_charset(const char *); 
    3435CHARSET_MAP *mutt_get_translation(const char *, const char *); 
     36 
    3537unsigned char mutt_display_char(unsigned char, CHARSET_MAP *); 
     38 
    3639int mutt_display_string(char *, CHARSET_MAP *); 
     40int mutt_is_utf8(const char *); 
     41 
     42void mutt_decode_utf8_string(char *, CHARSET *); 
     43 
     44void state_fput_utf8(STATE *, char, CHARSET *); 
    3745 
    3846#endif