mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
11 lines
217 B
C
11 lines
217 B
C
|
#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
|
||
|
}
|