Sign in
googlers
/
jrn
/
git
/
90e0d167c68f158309f260496f7f5350faee25ea
/
.
/
compat
/
strtoumax.c
blob: 5541353a77a22d48ccebd20ede2f510ae20d1492 [
file
] [
log
] [
blame
]
#include
"../git-compat-util.h"
uintmax_t
gitstrtoumax
(
const
char
*
nptr
,
char
**
endptr
,
int
base
)
{
#if defined(NO_STRTOULL)
return
strtoul
(
nptr
,
endptr
,
base
);
#else
return
strtoull
(
nptr
,
endptr
,
base
);
#endif
}