Sat Jun 15 18:13:43 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
[glibc.git] / string / argz-append.c
blobe61e3acf587ba82c376a40e54f5a3f8680a115eb
1 /* Routines for dealing with '\0' separated arg vectors.
3 Copyright (C) 1995, 1996 Free Software Foundation, Inc.
5 Written by Miles Bader <miles@gnu.ai.mit.edu>
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2, or (at
10 your option) any later version.
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21 #include <argz.h>
22 #include <string.h>
23 #include <stdlib.h>
25 /* Add BUF, of length BUF_LEN to the argz vector in ARGZ & ARGZ_LEN. */
26 error_t
27 __argz_append (char **argz, size_t *argz_len, const char *buf, size_t buf_len)
29 size_t new_argz_len = *argz_len + buf_len;
30 char *new_argz = realloc (*argz, new_argz_len);
31 if (new_argz)
33 memcpy (new_argz + *argz_len, buf, buf_len);
34 *argz = new_argz;
35 *argz_len = new_argz_len;
36 return 0;
38 else
39 return ENOMEM;
41 weak_alias (__argz_append, argz_append)
43 /* Add STR to the argz vector in ARGZ & ARGZ_LEN. This should be moved into
44 argz.c in libshouldbelibc. */
45 error_t
46 __argz_add (char **argz, size_t *argz_len, const char *str)
48 return __argz_append (argz, argz_len, str, strlen (str) + 1);
50 weak_alias (__argz_add, argz_add)