* Makerules (elfobjdir): Use $(objdir) if set, even in elf subdir.
[glibc.git] / string / argz-extract.c
blob99f6cdf97af09a21fc1ecf2c37b4f54680c5532b
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>
23 /* Puts pointers to each string in ARGZ, plus a terminating 0 element, into
24 ARGV, which must be large enough to hold them all. */
25 void
26 __argz_extract (char *argz, size_t len, char **argv)
28 while (len > 0)
30 size_t part_len = strlen(argz);
31 *argv++ = argz;
32 argz += part_len + 1;
33 len -= part_len + 1;
35 *argv = 0;
37 weak_alias (__argz_extract, argz_extract)