Sign in
code
/
git
/
a8a773c28fa618be573be7bce05d37ac4d079a80
/
.
/
compat
/
strtoimax.c
blob: ac09ed89e710ee7a489c29857b3cbe0b9d4d0404 [
file
]
#include
"../git-compat-util.h"
intmax_t
gitstrtoimax
(
const
char
*
nptr
,
char
**
endptr
,
int
base
)
{
#if defined(NO_STRTOULL)
return
strtol
(
nptr
,
endptr
,
base
);
#else
return
strtoll
(
nptr
,
endptr
,
base
);
#endif
}