diff options
author | Vicent Martà <vicent@github.com> | 2013-05-15 08:31:37 -0700 |
---|---|---|
committer | Vicent Martà <vicent@github.com> | 2013-05-15 08:31:37 -0700 |
commit | 86c6f74a79ef61582b636d478a9852ae54d87e2e (patch) | |
tree | f1c4e33497c216c333dc0133d8a15fcd137c358b /src/util.h | |
parent | bc2020d64869aa19a88b71aee33a24b54c178dab (diff) | |
parent | 0cb16fe924fb5c4e58866c28b06ace876e2dcbd3 (diff) | |
download | libgit2-86c6f74a79ef61582b636d478a9852ae54d87e2e.tar.gz |
Merge pull request #1583 from linquize/whitespace
Unify whitespaces to tabs
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util.h b/src/util.h index 687afe084..6f876d012 100644 --- a/src/util.h +++ b/src/util.h @@ -262,22 +262,22 @@ GIT_INLINE(size_t) git__size_t_powerof2(size_t v) GIT_INLINE(bool) git__isupper(int c) { - return (c >= 'A' && c <= 'Z'); + return (c >= 'A' && c <= 'Z'); } GIT_INLINE(bool) git__isalpha(int c) { - return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')); + return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')); } GIT_INLINE(bool) git__isdigit(int c) { - return (c >= '0' && c <= '9'); + return (c >= '0' && c <= '9'); } GIT_INLINE(bool) git__isspace(int c) { - return (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r' || c == '\v' || c == 0x85 /* Unicode CR+LF */); + return (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r' || c == '\v' || c == 0x85 /* Unicode CR+LF */); } GIT_INLINE(bool) git__iswildcard(int c) |