Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / argz / argz_stringify.c
blob98f6c9bc29db10dffb55fdb8b5d48b1b5fc8c826
1 /* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved.
3 * Permission to use, copy, modify, and distribute this software
4 * is freely granted, provided that this notice is preserved.
5 */
7 #include <_ansi.h>
8 #include <argz.h>
9 #include <stddef.h>
10 #include <sys/types.h>
12 void
13 argz_stringify (char *argz,
14 size_t argz_len,
15 int sep)
17 size_t i;
19 /* len includes trailing \0, which we don't want to replace. */
20 if (argz_len > 1)
21 for (i = 0; i < argz_len - 1; i++)
23 if (argz[i] == '\0')
24 argz[i] = sep;