mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-30 19:10:36 +08:00
18a635e315
* libc/argz/argz_count.c: Include stddef.h to get size_t. * libc/argz/argz_extract.c: Ditto. * libc/argz/argz_stringify.c: Ditto. * libc/search/hash.h: Ditto. * libc/sys/linux/include/sched.h: Ditto. * libc/sys/linux/sys/types.h: Ditto.
26 lines
506 B
C
26 lines
506 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 <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;
|
|
}
|