iR58/bk_aidk/projects/lock_lfvx/.svn/pristine/80/80353639b180fc04675002d747cd65e13c64993e.svn-base
2025-05-10 11:44:51 +08:00

17 lines
398 B
Plaintext

#ifndef __COMMON_CLIENT_H__
#define __COMMON_CLIENT_H__
#ifdef __cplusplus
extern "C" {
#endif
int string2hex(char* str,char* hex);
int StringToHex(char *str, unsigned char *out, unsigned int *outlen);
int arrayToStr(unsigned char *buf, unsigned int buflen, char *out);
void hex_to_asciistring(unsigned char* str,int size,unsigned char* str1);
#ifdef __cplusplus
}
#endif
#endif