mailing list of musl libc
 help / color / mirror / code / Atom feed
04482d43843d023b21279ac044fe6fa07bf0bc05 blob 482 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
function hex2int(str,   i) {
  str = tolower(str)

  for (i = 1; i <= 16; i++) {
    char = substr("0123456789abcdef", i, 1)
    lookup[char] = i-1
  }

  result = 0
  for (i = 1; i <= length(str); i++) {
    result = result * 16
    char   = substr(str, i, 1)
    result = result + lookup[char]
  }
  return result
}

function parse_const(str) {
  sign = sub(/^-/, "", str)
  hex  = sub(/^0x/, "", str)
  if (hex)
    n = hex2int(str)
  else
    n = str+0
  return sign ? -n : n
}
debug log:

solving 04482d4 ...
found 04482d4 in https://git.vuxu.org/mirror/musl/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).