shithub: asif

ref: 44dfc2ed7f45a337358e8b113aa408a7cc2975a7
dir: /hex.awk/

View raw version
#!/bin/awk -f
function hex(s, v){
	if(s ~ /^0x/)
		s = substr(s, 3)
	for(n=1; n<=length(s); n++)
		v = v * 16 + h[substr(s, n, 1)]
	return v
}
BEGIN{
	for(n=0; n<16; n++){
		h[sprintf("%x", n)] = n
		h[sprintf("%X", n)] = n
	}
}