]> sourceware.org Git - glibc.git/blame - string/argz.h
Update.
[glibc.git] / string / argz.h
CommitLineData
392d7920 1/* Routines for dealing with '\0' separated arg vectors.
d1a2b102 2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
392d7920
RM
3 Written by Miles Bader <miles@gnu.ai.mit.edu>
4
54d79e99
UD
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
392d7920 9
54d79e99
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
392d7920 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
54d79e99 13 Library General Public License for more details.
392d7920 14
54d79e99
UD
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
392d7920 19
5107cf1d
UD
20#ifndef _ARGZ_H
21#define _ARGZ_H 1
7a12c6bb
RM
22
23#include <features.h>
24
d1a2b102
MB
25#define __need_error_t
26#include <errno.h>
392d7920
RM
27#include <string.h> /* Need size_t, and strchr is called below. */
28
d1a2b102 29#ifndef __const
2604afb1 30# define __const const
d1a2b102
MB
31#endif
32
33#ifndef __error_t_defined
34typedef int error_t;
35#endif
36
7a12c6bb
RM
37
38__BEGIN_DECLS
39
392d7920
RM
40/* Make a '\0' separated arg vector from a unix argv vector, returning it in
41 ARGZ, and the total length in LEN. If a memory allocation error occurs,
42 ENOMEM is returned, otherwise 0. The result can be destroyed using free. */
267ca16a 43extern error_t __argz_create __P ((char *__const __argv[], char **__argz,
23396375 44 size_t *__len));
267ca16a 45extern error_t argz_create __P ((char *__const __argv[], char **__argz,
23396375 46 size_t *__len));
7a12c6bb
RM
47
48/* Make a '\0' separated arg vector from a SEP separated list in
49 STRING, returning it in ARGZ, and the total length in LEN. If a
50 memory allocation error occurs, ENOMEM is returned, otherwise 0.
51 The result can be destroyed using free. */
23396375
UD
52extern error_t __argz_create_sep __P ((__const char *__string, int __sep,
53 char **__argz, size_t *__len));
54extern error_t argz_create_sep __P ((__const char *__string, int __sep,
55 char **__argz, size_t *__len));
392d7920
RM
56
57/* Returns the number of strings in ARGZ. */
23396375
UD
58extern size_t __argz_count __P ((__const char *__argz, size_t __len));
59extern size_t argz_count __P ((__const char *__argz, size_t __len));
392d7920
RM
60
61/* Puts pointers to each string in ARGZ into ARGV, which must be large enough
62 to hold them all. */
23396375
UD
63extern void __argz_extract __P ((char *__argz, size_t __len, char **__argv));
64extern void argz_extract __P ((char *__argz, size_t __len, char **__argv));
392d7920
RM
65
66/* Make '\0' separated arg vector ARGZ printable by converting all the '\0's
67 except the last into the character SEP. */
23396375
UD
68extern void __argz_stringify __P ((char *__argz, size_t __len, int __sep));
69extern void argz_stringify __P ((char *__argz, size_t __len, int __sep));
392d7920
RM
70
71/* Append BUF, of length BUF_LEN to the argz vector in ARGZ & ARGZ_LEN. */
23396375
UD
72extern error_t __argz_append __P ((char **__argz, size_t *__argz_len,
73 __const char *__buf, size_t _buf_len));
74extern error_t argz_append __P ((char **__argz, size_t *__argz_len,
75 __const char *__buf, size_t __buf_len));
392d7920
RM
76
77/* Append STR to the argz vector in ARGZ & ARGZ_LEN. */
23396375
UD
78extern error_t __argz_add __P ((char **__argz, size_t *__argz_len,
79 __const char *__str));
80extern error_t argz_add __P ((char **__argz, size_t *__argz_len,
81 __const char *__str));
392d7920 82
e4cf5070
UD
83/* Append SEP separated list in STRING to the argz vector in ARGZ &
84 ARGZ_LEN. */
85extern error_t __argz_add_sep __P ((char **__argz, size_t *__argz_len,
86 __const char *__string, int __delim));
87extern error_t argz_add_sep __P ((char **__argz, size_t *__argz_len,
88 __const char *__string, int __delim));
89
392d7920 90/* Delete ENTRY from ARGZ & ARGZ_LEN, if it appears there. */
23396375
UD
91extern void __argz_delete __P ((char **__argz, size_t *__argz_len,
92 char *__entry));
93extern void argz_delete __P ((char **__argz, size_t *__argz_len,
94 char *__entry));
392d7920
RM
95
96/* Insert ENTRY into ARGZ & ARGZ_LEN before BEFORE, which should be an
97 existing entry in ARGZ; if BEFORE is NULL, ENTRY is appended to the end.
98 Since ARGZ's first entry is the same as ARGZ, argz_insert (ARGZ, ARGZ_LEN,
99 ARGZ, ENTRY) will insert ENTRY at the beginning of ARGZ. If BEFORE is not
100 in ARGZ, EINVAL is returned, else if memory can't be allocated for the new
101 ARGZ, ENOMEM is returned, else 0. */
23396375
UD
102extern error_t __argz_insert __P ((char **__argz, size_t *__argz_len,
103 char *__before, __const char *__entry));
104extern error_t argz_insert __P ((char **__argz, size_t *__argz_len,
105 char *__before, __const char *__entry));
d705269e
UD
106
107/* Replace any occurances of the string STR in ARGZ with WITH, reallocating
108 ARGZ as necessary. If REPLACE_COUNT is non-zero, *REPLACE_COUNT will be
109 incremented by number of replacements performed. */
110extern error_t __argz_replace (char **__argz, size_t *__argz_len,
111 __const char *__str, __const char *__with,
112 unsigned *__replace_count);
113extern error_t argz_replace (char **__argz, size_t *__argz_len,
114 __const char *__str, __const char *__with,
115 unsigned *__replace_count);
392d7920
RM
116\f
117/* Returns the next entry in ARGZ & ARGZ_LEN after ENTRY, or NULL if there
118 are no more. If entry is NULL, then the first entry is returned. This
119 behavior allows two convenient iteration styles:
120
121 char *entry = 0;
7a12c6bb 122 while ((entry = argz_next (argz, argz_len, entry)))
392d7920
RM
123 ...;
124
125 or
126
127 char *entry;
128 for (entry = argz; entry; entry = argz_next (argz, argz_len, entry))
129 ...;
130*/
8f0c527e
RM
131extern char *__argz_next __P ((char *argz, size_t __argz_len,
132 __const char *entry));
133extern char *argz_next __P ((char *argz, size_t __argz_len,
134 __const char *entry));
7a12c6bb 135
0c6cee5d 136#ifdef __USE_EXTERN_INLINES
392d7920 137extern inline char *
ba1ffaa1 138__argz_next (char *__argz, size_t __argz_len, __const char *__entry)
392d7920 139{
23396375 140 if (__entry)
7a12c6bb 141 {
23396375
UD
142 if (__entry < __argz + __argz_len)
143 __entry = strchr (__entry, '\0') + 1;
7a12c6bb 144
2604afb1 145 return __entry >= __argz + __argz_len ? (char *) NULL : (char *) __entry;
7a12c6bb 146 }
392d7920 147 else
ba1ffaa1 148 return __argz_len > 0 ? __argz : 0;
392d7920 149}
7a12c6bb 150extern inline char *
ba1ffaa1 151argz_next (char *__argz, size_t __argz_len, __const char *__entry)
7a12c6bb 152{
23396375 153 return __argz_next (__argz, __argz_len, __entry);
7a12c6bb 154}
0c6cee5d 155#endif /* Use extern inlines. */
392d7920 156
92f1da4d
UD
157__END_DECLS
158
2c6fe0bd 159#endif /* argz.h */
This page took 0.080422 seconds and 5 git commands to generate.