GB2312UnicodeTable.h 279 B

123456789101112
  1. #ifndef __GB2312UNICODETABLE_H_
  2. #define __GB2312UNICODETABLE_H_
  3. #include <stdint.h>
  4. typedef struct {
  5. uint16_t unicode;
  6. uint16_t gb2312;
  7. } unicode_gb2312_map_t;
  8. extern const unsigned short GB2312_UNICODE_MAP[];
  9. extern const unicode_gb2312_map_t UNICODE_GB2312_MAP[];
  10. #endif