4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 11:31:00 +08:00
newlib-cygwin/newlib/libc/argz/argz_stringify.c
Corinna Vinschen 76a2ee78b6 * libc/argz/argz_add_sep.c (argz_add_sep): Handle empty string
argument.
	* libc/argz/argz_append.c (argz_append): Handle empty buf argument.
	* libc/argz/argz_create_sep.c (argz_create_sep): Return (NULL, 0)
	on empty input strings.
	* libc/argz/argz_extract.c (argz_extract): Check argz_len before
	looping through argz.
	* libc/argz/argz_stringify.c (argz_stringify): Ditto.
2007-05-29 07:49:14 +00:00

26 lines
565 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 <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;
}
}