1 /* Routines for dealing with '\0' separated arg vectors.
2 Copyright (C) 1995, 1996 Free Software Foundation, Inc.
3 Written by Miles Bader <miles@gnu.ai.mit.edu>
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.
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
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
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. */
25 #include <errno.h> /* Define error_t. */
26 #include <string.h> /* Need size_t, and strchr is called below. */
31 /* Make a '\0' separated arg vector from a unix argv vector, returning it in
32 ARGZ, and the total length in LEN. If a memory allocation error occurs,
33 ENOMEM is returned, otherwise 0. The result can be destroyed using free. */
34 extern error_t __argz_create
__P ((char *__const __argv
[], char **__argz
,
36 extern error_t argz_create
__P ((char *__const __argv
[], char **__argz
,
39 /* Make a '\0' separated arg vector from a SEP separated list in
40 STRING, returning it in ARGZ, and the total length in LEN. If a
41 memory allocation error occurs, ENOMEM is returned, otherwise 0.
42 The result can be destroyed using free. */
43 extern error_t __argz_create_sep
__P ((__const
char *__string
, int __sep
,
44 char **__argz
, size_t *__len
));
45 extern error_t argz_create_sep
__P ((__const
char *__string
, int __sep
,
46 char **__argz
, size_t *__len
));
48 /* Returns the number of strings in ARGZ. */
49 extern size_t __argz_count
__P ((__const
char *__argz
, size_t __len
));
50 extern size_t argz_count
__P ((__const
char *__argz
, size_t __len
));
52 /* Puts pointers to each string in ARGZ into ARGV, which must be large enough
54 extern void __argz_extract
__P ((char *__argz
, size_t __len
, char **__argv
));
55 extern void argz_extract
__P ((char *__argz
, size_t __len
, char **__argv
));
57 /* Make '\0' separated arg vector ARGZ printable by converting all the '\0's
58 except the last into the character SEP. */
59 extern void __argz_stringify
__P ((char *__argz
, size_t __len
, int __sep
));
60 extern void argz_stringify
__P ((char *__argz
, size_t __len
, int __sep
));
62 /* Append BUF, of length BUF_LEN to the argz vector in ARGZ & ARGZ_LEN. */
63 extern error_t __argz_append
__P ((char **__argz
, size_t *__argz_len
,
64 __const
char *__buf
, size_t _buf_len
));
65 extern error_t argz_append
__P ((char **__argz
, size_t *__argz_len
,
66 __const
char *__buf
, size_t __buf_len
));
68 /* Append STR to the argz vector in ARGZ & ARGZ_LEN. */
69 extern error_t __argz_add
__P ((char **__argz
, size_t *__argz_len
,
70 __const
char *__str
));
71 extern error_t argz_add
__P ((char **__argz
, size_t *__argz_len
,
72 __const
char *__str
));
74 /* Append SEP separated list in STRING to the argz vector in ARGZ &
76 extern error_t __argz_add_sep
__P ((char **__argz
, size_t *__argz_len
,
77 __const
char *__string
, int __delim
));
78 extern error_t argz_add_sep
__P ((char **__argz
, size_t *__argz_len
,
79 __const
char *__string
, int __delim
));
81 /* Delete ENTRY from ARGZ & ARGZ_LEN, if it appears there. */
82 extern void __argz_delete
__P ((char **__argz
, size_t *__argz_len
,
84 extern void argz_delete
__P ((char **__argz
, size_t *__argz_len
,
87 /* Insert ENTRY into ARGZ & ARGZ_LEN before BEFORE, which should be an
88 existing entry in ARGZ; if BEFORE is NULL, ENTRY is appended to the end.
89 Since ARGZ's first entry is the same as ARGZ, argz_insert (ARGZ, ARGZ_LEN,
90 ARGZ, ENTRY) will insert ENTRY at the beginning of ARGZ. If BEFORE is not
91 in ARGZ, EINVAL is returned, else if memory can't be allocated for the new
92 ARGZ, ENOMEM is returned, else 0. */
93 extern error_t __argz_insert
__P ((char **__argz
, size_t *__argz_len
,
94 char *__before
, __const
char *__entry
));
95 extern error_t argz_insert
__P ((char **__argz
, size_t *__argz_len
,
96 char *__before
, __const
char *__entry
));
98 /* Returns the next entry in ARGZ & ARGZ_LEN after ENTRY, or NULL if there
99 are no more. If entry is NULL, then the first entry is returned. This
100 behavior allows two convenient iteration styles:
103 while ((entry = argz_next (argz, argz_len, entry)))
109 for (entry = argz; entry; entry = argz_next (argz, argz_len, entry))
112 extern char *__argz_next
__P ((char *argz
, size_t __argz_len
,
113 __const
char *entry
));
114 extern char *argz_next
__P ((char *argz
, size_t __argz_len
,
115 __const
char *entry
));
117 #if defined (__OPTIMIZE__) && __GNUC__ >= 2
119 __argz_next (char *__argz
, size_t __argz_len
, __const
char *__entry
)
123 if (__entry
< __argz
+ __argz_len
)
124 __entry
= strchr (__entry
, '\0') + 1;
126 return __entry
>= __argz
+ __argz_len
? NULL
: (char *) __entry
;
129 return __argz_len
> 0 ? __argz
: 0;
132 argz_next (char *__argz
, size_t __argz_len
, __const
char *__entry
)
134 return __argz_next (__argz
, __argz_len
, __entry
);
136 #endif /* optimizing GCC2 */