1
2
3
4
5
6
7
8
9
10
11
12
13
14
| //
| // Created by YY on 2020/1/7.
| //
|
| #ifndef MYAPPLICATION2_XCONVERT_H
| #define MYAPPLICATION2_XCONVERT_H
|
| #include <cstdint>
|
| void ConvertPhoneNum(uint8_t *dst, int length, const char *src);
| void ConvertHex2String(char *str, const uint8_t *hex, int length);
| void ConvertString2Hex(uint8_t *hex, int length, const char *str);
|
| #endif //MYAPPLICATION2_XCONVERT_H
|
|