diff options
Diffstat (limited to 'newlib/libc/argz/argz_count.c')
-rw-r--r-- | newlib/libc/argz/argz_count.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/newlib/libc/argz/argz_count.c b/newlib/libc/argz/argz_count.c deleted file mode 100644 index 8f0366828..000000000 --- a/newlib/libc/argz/argz_count.c +++ /dev/null @@ -1,25 +0,0 @@ -/* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved. - * - * Permission to use, copy, modify, and distribute this software - * is freely granted, provided that this notice is preserved. - */ - -#include <_ansi.h> -#include <stddef.h> -#include <sys/types.h> - -size_t -_DEFUN (argz_count, (argz, argz_len), - const char *argz _AND - size_t argz_len) -{ - int i; - size_t count = 0; - - for (i = 0; i < argz_len; i++) - { - if (argz[i] == '\0') - count++; - } - return count; -} |