MCPcopy Create free account
hub / github.com/ValveSoftware/Proton / hexdigit

Function hexdigit

lsteamclient/unixlib.cpp:923–929  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

921}
922
923static unsigned char hexdigit( WCHAR c )
924{
925 if (c >= '0' && c <= '9') return c - '0';
926 if (c >= 'a' && c <= 'f') return c - 'a' + 10;
927 if (c >= 'A' && c <= 'F') return c - 'A' + 10;
928 return 0xff;
929}
930
931static void url_unescape( WCHAR *s )
932{

Callers 1

url_unescapeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected