22 lines
422 B
C
22 lines
422 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 <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;
|
||
|
}
|