| 457 | #ifdef ACL_WINDOWS |
| 458 | |
| 459 | acl_uint64 acl_atoui64(const char *str) |
| 460 | { |
| 461 | #if 0 |
| 462 | return (acl_uint64) _atoi64(str); |
| 463 | #else |
| 464 | return (acl_uint64) acl_atoll(str); |
| 465 | #endif |
| 466 | } |
| 467 | |
| 468 | acl_int64 acl_atoi64(const char *str) |
| 469 | { |
no test coverage detected
searching dependent graphs…