Retro68/gcc/newlib/libc/argz/argz_stringify.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

27 lines
557 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 <argz.h>
#include <stddef.h>
#include <sys/types.h>
void
argz_stringify (char *argz,
size_t argz_len,
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;
}
}