2002-04-10 11:50:25 +00:00
|
|
|
#ifndef _ARGZ_H
|
2002-04-09 20:36:24 +00:00
|
|
|
|
1996-04-29 05:21:53 +00:00
|
|
|
#include <string/argz.h>
|
2002-04-09 20:36:24 +00:00
|
|
|
|
2016-08-23 21:19:17 -04:00
|
|
|
# ifndef _ISOMAC
|
|
|
|
|
|
2017-08-18 09:31:19 -07:00
|
|
|
extern error_t __argz_create_sep (const char *__restrict __string,
|
|
|
|
|
int __sep, char **__restrict __argz,
|
|
|
|
|
size_t *__restrict __len)
|
|
|
|
|
__THROW attribute_hidden;
|
|
|
|
|
extern error_t __argz_append (char **__restrict __argz,
|
|
|
|
|
size_t *__restrict __argz_len,
|
|
|
|
|
const char *__restrict __buf, size_t __buf_len)
|
|
|
|
|
__THROW attribute_hidden;
|
|
|
|
|
extern error_t __argz_add (char **__restrict __argz,
|
|
|
|
|
size_t *__restrict __argz_len,
|
|
|
|
|
const char *__restrict __str)
|
|
|
|
|
__THROW attribute_hidden;
|
|
|
|
|
extern error_t __argz_add_sep (char **__restrict __argz,
|
|
|
|
|
size_t *__restrict __argz_len,
|
|
|
|
|
const char *__restrict __string, int __delim)
|
|
|
|
|
__THROW attribute_hidden;
|
|
|
|
|
extern void __argz_delete (char **__restrict __argz,
|
|
|
|
|
size_t *__restrict __argz_len,
|
|
|
|
|
char *__restrict __entry)
|
|
|
|
|
__THROW attribute_hidden;
|
|
|
|
|
extern error_t __argz_insert (char **__restrict __argz,
|
|
|
|
|
size_t *__restrict __argz_len,
|
|
|
|
|
char *__restrict __before,
|
|
|
|
|
const char *__restrict __entry)
|
|
|
|
|
__THROW attribute_hidden;
|
|
|
|
|
extern error_t __argz_replace (char **__restrict __argz,
|
|
|
|
|
size_t *__restrict __argz_len,
|
|
|
|
|
const char *__restrict __str,
|
|
|
|
|
const char *__restrict __with,
|
|
|
|
|
unsigned int *__restrict __replace_count)
|
|
|
|
|
attribute_hidden;
|
|
|
|
|
|
2002-08-04 01:28:06 +00:00
|
|
|
libc_hidden_proto (argz_delete)
|
2012-05-23 22:38:10 +02:00
|
|
|
libc_hidden_proto (__argz_count)
|
|
|
|
|
libc_hidden_proto (__argz_stringify)
|
2018-02-15 21:00:02 +00:00
|
|
|
libc_hidden_proto (argz_next)
|
|
|
|
|
libc_hidden_proto (__argz_next)
|
2002-04-09 20:36:24 +00:00
|
|
|
|
2016-08-23 21:19:17 -04:00
|
|
|
# endif /* !_ISOMAC */
|
2002-04-09 20:36:24 +00:00
|
|
|
#endif
|