4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-29 02:20:21 +08:00
newlib-cygwin/newlib/libc/argz/argz_stringify.c
Jeff Johnston 18a635e315 2008-07-02 Jeff Johnston <jjohnstn@redhat.com>
* 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.
2008-07-02 18:38:45 +00:00

27 lines
585 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>
void
_DEFUN (argz_stringify, (argz, argz_len, sep),
char *argz _AND
size_t argz_len _AND
int sep)
{
size_t i;
/* len includes trailing \0, which we don't want to replace. */
if (argz_len > 1)
for (i = 0; i < argz_len - 1; i++)
{
if (argz[i] == '\0')
argz[i] = sep;
}
}