1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

1998-09-04 Roland McGrath <roland@baalperazim.frob.com>

* string/argz.h (argz_extract, argz_next): Use `const' for ARGZ param.
	* string/argz-next.c, string/argz-extract.c: Fix defns.
This commit is contained in:
Roland McGrath
1998-09-04 16:27:01 +00:00
parent 1097c6030a
commit 29659dd28d
4 changed files with 21 additions and 14 deletions

View File

@ -1,7 +1,7 @@
/* Routines for dealing with '\0' separated arg vectors.
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
Copyright (C) 1995, 96, 97, 98 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Written by Miles Bader <miles@gnu.ai.mit.edu>
Written by Miles Bader <miles@gnu.org>
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
@ -23,7 +23,7 @@
/* Puts pointers to each string in ARGZ, plus a terminating 0 element, into
ARGV, which must be large enough to hold them all. */
void
__argz_extract (char *argz, size_t len, char **argv)
__argz_extract (const char *argz, size_t len, char **argv)
{
while (len > 0)
{