Welcome to mirror list, hosted at ThFree Co, Russian Federation.

argz_stringify.c « argz « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: febf8b4f9cbfa32af6974e9896a1afe578e675e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* 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;
      }
}