root/compat/strtoumax.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. gitstrtoumax

#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
}

/* [<][>][^][v][top][bottom][index][help] */