| 213 | } |
| 214 | |
| 215 | uint64_t Int::GetInt64() { |
| 216 | char *temp =NULL; |
| 217 | uint64_t r; |
| 218 | temp = mpz_get_str(NULL,10,num); |
| 219 | r = strtoull(temp,NULL,10); |
| 220 | free(temp); |
| 221 | return r; |
| 222 | } |
| 223 | |
| 224 | uint32_t Int::GetInt32() { |
| 225 | return mpz_get_ui(num); |
no outgoing calls
no test coverage detected