projects
/
git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
push: support signing pushes iff the server supports it
[git]
/
compat
/
strtoumax.c
Commit
Line
Data
bc6b4f52
JR
1
#include "../git-compat-util.h"
2
3
uintmax_t gitstrtoumax (const char *nptr, char **endptr, int base)
4
{
5
#if defined(NO_STRTOULL)
6
return strtoul(nptr, endptr, base);
7
#else
8
return strtoull(nptr, endptr, base);
9
#endif
10
}