s
yy1717
2020-01-10 91534e59ac99449404bc9ad96696662044dd0afc
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