From: Junio C Hamano Date: Thu, 9 Mar 2006 19:58:05 +0000 (-0800) Subject: Use #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) X-Git-Tag: v1.3.0-rc1~13^2~13 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=b4f2a6ac9263d6e9bf3bf9c8abe607cd6def0ee8;p=git.git Use #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) Signed-off-by: Junio C Hamano --- diff --git a/apply.c b/apply.c index 849a8b44..179b3bbd 100644 --- a/apply.c +++ b/apply.c @@ -651,7 +651,7 @@ static int parse_git_header(char *line, int len, unsigned int size, struct patch len = linelen(line, size); if (!len || line[len-1] != '\n') break; - for (i = 0; i < sizeof(optable) / sizeof(optable[0]); i++) { + for (i = 0; i < ARRAY_SIZE(optable); i++) { const struct opentry *p = optable + i; int oplen = strlen(p->str); if (len < oplen || memcmp(p->str, line, oplen)) diff --git a/date.c b/date.c index 416ea579..1c1917b4 100644 --- a/date.c +++ b/date.c @@ -123,8 +123,6 @@ static const struct { { "IDLE", +12, 0, }, /* International Date Line East */ }; -#define NR_TZ (sizeof(timezone_names) / sizeof(timezone_names[0])) - static int match_string(const char *date, const char *str) { int i = 0; @@ -173,7 +171,7 @@ static int match_alpha(const char *date, struct tm *tm, int *offset) } } - for (i = 0; i < NR_TZ; i++) { + for (i = 0; i < ARRAY_SIZE(timezone_names); i++) { int match = match_string(date, timezone_names[i].name); if (match >= 3) { int off = timezone_names[i].offset; diff --git a/exec_cmd.c b/exec_cmd.c index 96cc2123..590e7389 100644 --- a/exec_cmd.c +++ b/exec_cmd.c @@ -37,7 +37,7 @@ int execv_git_cmd(const char **argv) getenv("GIT_EXEC_PATH"), builtin_exec_path }; - for (i = 0; i < sizeof(paths)/sizeof(paths[0]); ++i) { + for (i = 0; i < ARRAY_SIZE(paths); ++i) { const char *exec_dir = paths[i]; const char *tmp; diff --git a/git-compat-util.h b/git-compat-util.h index f982b8e4..5d543d29 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -9,6 +9,8 @@ #endif #endif +#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) + #include #include #include diff --git a/git.c b/git.c index 164d3e9e..746e2af6 100644 --- a/git.c +++ b/git.c @@ -323,8 +323,6 @@ static int cmd_log(int argc, const char **argv, char **envp) return 0; } -#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) - static void handle_internal_command(int argc, const char **argv, char **envp) { const char *cmd = argv[0];