libc/newlib/libc/argz/argz_count.c
Yaakov Selkowitz 9087163804 ansification: remove _DEFUN
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:26 -06:00

26 lines
486 B
C

/* 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 <argz.h>
#include <stddef.h>
#include <sys/types.h>
size_t
argz_count (const char *argz,
size_t argz_len)
{
int i;
size_t count = 0;
for (i = 0; i < argz_len; i++)
{
if (argz[i] == '\0')
count++;
}
return count;
}