Changeset 169:6fc502d29d89 for charset.h

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

Generate the character set tables from i18n files.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • charset.h

    r153 r169  
    2020#define _CHARSET_H 
    2121 
    22 typedef int UNICODE_MAP[128]; 
     22#define CHARSET_MAGIC "Mutt Character Set Definition 1.1\n" 
     23 
     24#ifndef _GEN_CHARSETS 
     25 
     26typedef int UNICODE_MAP[256]; 
    2327 
    2428typedef struct  
     
    2731  UNICODE_MAP *map; 
    2832} CHARSET; 
    29  
    30 #define CHARSET_MAGIC "Mutt Character Set Definition 1.0\n" 
    31  
    32 #ifndef _GEN_CHARSETS 
    3333 
    3434CHARSET *mutt_get_charset(const char *);