1
2
3
4
5
6
7
8
9
10
11
12
13
14
| //
| // Created by YY on 2021/10/22.
| //
|
| #ifndef USBCAMERATEST_CHARENCODE_H
| #define USBCAMERATEST_CHARENCODE_H
|
| int enc_unicode_to_utf8_one(unsigned long unic, unsigned char *pOutput, int outSize);
|
| int enc_utf8_to_unicode_one(const unsigned char* pInput, unsigned long *Unic);
|
| int enc_get_utf8_size(const unsigned char pInput);
|
| #endif //USBCAMERATEST_CHARENCODE_H
|
|