MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / hex

Function hex

src/String.cpp:1102–1111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1100
1101
1102static int hex(int inChar)
1103{
1104 if (inChar>='0' && inChar<='9')
1105 return inChar-'0';
1106 if (inChar>='a' && inChar<='f')
1107 return inChar-'a' + 10;
1108 if (inChar>='A' && inChar<='F')
1109 return inChar-'A' + 10;
1110 return 0;
1111}
1112
1113
1114String String::__URLDecode() const

Callers 1

__URLDecodeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected