Sign in
code
/
git
/
f69f5f19cfae949b2bbd6c6ffbb990b6a00d04b0
/
.
/
compat
/
strtoumax.c
blob: 5541353a77a22d48ccebd20ede2f510ae20d1492 [
file
]
#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
}