MCPcopy Create free account
hub / github.com/MediaArea/MediaInfoLib / Char2Hex

Function Char2Hex

Source/MediaInfo/Multiple/File__ReferenceFilesHelper.cpp:114–125  ·  view source on GitHub ↗

---------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

112
113//---------------------------------------------------------------------------
114static unsigned char Char2Hex (unsigned char Char)
115{
116 if (Char<='9' && Char>='0')
117 Char-='0';
118 else if (Char<='f' && Char>='a')
119 Char-='a'-10;
120 else if (Char<='F' && Char>='A')
121 Char-='A'-10;
122 else
123 Char =0;
124 return Char;
125}
126
127//---------------------------------------------------------------------------
128std::wstring URL_Encoded_Decode (const std::wstring& URL)

Callers 1

URL_Encoded_DecodeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected