Update copyright notices with scripts/update-copyrights
[glibc.git] / string / argz-ctsep.c
blob0a2f58c4db8fb5710292fc712ec5286f51e85ac5
1 /* Copyright (C) 1996-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the 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 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 #include <argz.h>
20 #include <errno.h>
21 #include <stdlib.h>
22 #include <string.h>
25 error_t
26 __argz_create_sep (const char *string, int delim, char **argz, size_t *len)
28 size_t nlen = strlen (string) + 1;
30 if (nlen > 1)
32 const char *rp;
33 char *wp;
35 *argz = (char *) malloc (nlen);
36 if (*argz == NULL)
37 return ENOMEM;
39 rp = string;
40 wp = *argz;
42 if (*rp == delim)
44 if (wp > *argz && wp[-1] != '\0')
45 *wp++ = '\0';
46 else
47 --nlen;
49 else
50 *wp++ = *rp;
51 while (*rp++ != '\0');
53 if (nlen == 0)
55 free (*argz);
56 *argz = NULL;
57 *len = 0;
60 *len = nlen;
62 else
64 *argz = NULL;
65 *len = 0;
68 return 0;
70 weak_alias (__argz_create_sep, argz_create_sep)