- #ifndef __GB2312UNICODETABLE_H_
- #define __GB2312UNICODETABLE_H_
- #include <stdint.h>
- typedef struct {
- uint16_t unicode;
- uint16_t gb2312;
- } unicode_gb2312_map_t;
- extern const unsigned short GB2312_UNICODE_MAP[];
- extern const unicode_gb2312_map_t UNICODE_GB2312_MAP[];
- #endif
|