From 29659dd28d2645f5b349ddf3a6ae7f31f4ba9066 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 4 Sep 1998 16:27:01 +0000 Subject: 1998-09-04 Roland McGrath * string/argz.h (argz_extract, argz_next): Use `const' for ARGZ param. * string/argz-next.c, string/argz-extract.c: Fix defns. --- ChangeLog | 5 +++++ string/argz-extract.c | 6 +++--- string/argz-next.c | 6 +++--- string/argz.h | 18 ++++++++++-------- 4 files changed, 21 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index 66c58c2..aa80bea 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1998-09-04 Roland McGrath + + * string/argz.h (argz_extract, argz_next): Use `const' for ARGZ param. + * string/argz-next.c, string/argz-extract.c: Fix defns. + 1998-09-03 Roland McGrath * mach/Makefile: Use -include for mach-syscalls.mk to silence warning. diff --git a/string/argz-extract.c b/string/argz-extract.c index ed3a266..f03272c 100644 --- a/string/argz-extract.c +++ b/string/argz-extract.c @@ -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 + Written by Miles Bader 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) { diff --git a/string/argz-next.c b/string/argz-next.c index 46d3934..edb4956 100644 --- a/string/argz-next.c +++ b/string/argz-next.c @@ -1,7 +1,7 @@ /* Iterate through the elements of an argz block. - 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 + Written by Miles Bader 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 @@ -22,7 +22,7 @@ #include char * -__argz_next (char *argz, size_t argz_len, const char *entry) +__argz_next (const char *argz, size_t argz_len, const char *entry) { if (entry) { diff --git a/string/argz.h b/string/argz.h index c8dd918..49445bc 100644 --- a/string/argz.h +++ b/string/argz.h @@ -1,6 +1,6 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - Written by Miles Bader + Copyright (C) 1995, 96, 97, 98 Free Software Foundation, Inc. + Written by Miles Bader 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 @@ -60,8 +60,10 @@ extern size_t argz_count __P ((__const char *__argz, size_t __len)); /* Puts pointers to each string in ARGZ into ARGV, which must be large enough to hold them all. */ -extern void __argz_extract __P ((char *__argz, size_t __len, char **__argv)); -extern void argz_extract __P ((char *__argz, size_t __len, char **__argv)); +extern void __argz_extract __P ((__const char *__argz, size_t __len, + char **__argv)); +extern void argz_extract __P ((__const char *__argz, size_t __len, + char **__argv)); /* Make '\0' separated arg vector ARGZ printable by converting all the '\0's except the last into the character SEP. */ @@ -128,14 +130,14 @@ extern error_t argz_replace (char **__argz, size_t *__argz_len, for (entry = argz; entry; entry = argz_next (argz, argz_len, entry)) ...; */ -extern char *__argz_next __P ((char *argz, size_t __argz_len, +extern char *__argz_next __P ((__const char *argz, size_t __argz_len, __const char *entry)); -extern char *argz_next __P ((char *argz, size_t __argz_len, +extern char *argz_next __P ((__const char *argz, size_t __argz_len, __const char *entry)); #ifdef __USE_EXTERN_INLINES extern inline char * -__argz_next (char *__argz, size_t __argz_len, __const char *__entry) +__argz_next (__const char *__argz, size_t __argz_len, __const char *__entry) { if (__entry) { @@ -148,7 +150,7 @@ __argz_next (char *__argz, size_t __argz_len, __const char *__entry) return __argz_len > 0 ? __argz : 0; } extern inline char * -argz_next (char *__argz, size_t __argz_len, __const char *__entry) +argz_next (__const char *__argz, size_t __argz_len, __const char *__entry) { return __argz_next (__argz, __argz_len, __entry); } -- cgit v1.1