root/compat/strtoimax.c

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

DEFINITIONS

This source file includes following definitions.
  1. gitstrtoimax

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

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