diff options
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 018fce57e..8f0c4b543 100644 --- a/src/util.h +++ b/src/util.h @@ -31,6 +31,13 @@ extern int git__fmt(char *, size_t, const char *, ...) extern int git__prefixcmp(const char *str, const char *prefix); extern int git__suffixcmp(const char *str, const char *suffix); +/** @return true if p fits into the range of a size_t */ +GIT_INLINE(int) git__is_sizet(off_t p) +{ + size_t r = (size_t)p; + return p == r; +} + /* * Realloc the buffer pointed at by variable 'x' so that it can hold * at least 'nr' entries; the number of entries currently allocated |
