ll

Dependencies:   mbed

string.h

Committer:
adrianow795
Date:
2017-05-09
Revision:
0:a8e3f4b25a52

File content as of revision 0:a8e3f4b25a52:

#ifndef STRING_H
#define STRING_H

enum CompResult {DIFFERENT,EQUAL};

enum CompResult eCompareString(char pcStr1[],char pcStr2[]);
void ReplaceCharactersInString(char pcString[],char cOldChar,char cNewChar);
void UIntToHexStr(unsigned int uiValue, char pcStr[]);
enum Result eHexStringToUInt(char pcStr[], unsigned int *puiValue);

#endif