unicode.h 294 B

123456789101112
  1. #ifndef _UNICODE_H_
  2. #define _UNICODE_H_
  3. #include <stdint.h>
  4. // size: 以 uint16_t 为单位
  5. // length: 以 uint8_t 为单位
  6. //返回为填充进dest中的个数
  7. uint16_t Ansi_to_Unicode(uint16_t *dest, uint16_t size,
  8. const uint8_t *src, uint16_t length); //
  9. #endif /* _UNICODE_H_ */