MCPcopy Index your code
hub / github.com/MapServer/MapServer / x2c

Function x2c

cgiutil.c:385–392  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

383}
384
385char x2c(char *what) {
386 register char digit;
387
388 digit = (what[0] >= 'A' ? ((what[0] & 0xdf) - 'A')+10 : (what[0] - '0'));
389 digit *= 16;
390 digit += (what[1] >= 'A' ? ((what[1] & 0xdf) - 'A')+10 : (what[1] - '0'));
391 return(digit);
392}
393
394void unescape_url(char *url) {
395 register int x,y;

Callers 1

unescape_urlFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected