hexdec

hexdec

[code]
func Hexdec(str string) (int64, error) {
	return strconv.ParseInt(str, 16, 0)
}
[/code]