common.h 293 B

123456789101112
  1. #ifndef __COMMON__H__
  2. #define __COMMON__H__
  3. char msgCmp(char *msg, char *target);
  4. int GetParaFromStr(char *Str,char *Para,char *Value);
  5. unsigned char charStrToHex(char d1, char d2);
  6. void AscStrTurnHexStr(char *AscStr, char *HexStr);
  7. void LwEndingToBiEndingStr(char *data, int len);
  8. #endif