(hex string)
| 127 | } |
| 128 | |
| 129 | func hexToOffset(hex string) (integer int64) { |
| 130 | integer, _ = strconv.ParseInt(hex, 16, 64) |
| 131 | integer = integer * 2 |
| 132 | return |
| 133 | } |
| 134 | |
| 135 | func hexToDecimalString(hex string) (decimal string) { |
| 136 | integer, _ := strconv.ParseInt(hex, 16, 64) |