123456789101112 |
- #ifndef _UNICODE_H_
- #define _UNICODE_H_
- #include <stdint.h>
- // size: 以 uint16_t 为单位
- // length: 以 uint8_t 为单位
- //返回为填充进dest中的个数
- uint16_t Ansi_to_Unicode(uint16_t *dest, uint16_t size,
- const uint8_t *src, uint16_t length); //
- #endif /* _UNICODE_H_ */
|