* lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
[gnulib.git] / lib / getsubopt.c
1 /* Parse comma separate list into words.
2    Copyright (C) 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License along
17    with this program; if not, write to the Free Software Foundation,
18    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
20 #if !_LIBC
21 # include <config.h>
22 # include "getsubopt.h"
23 #endif
24
25 #include <stdlib.h>
26 #include <string.h>
27
28 #if !_LIBC
29 /* This code is written for inclusion in gnu-libc, and uses names in
30    the namespace reserved for libc.  If we're compiling in gnulib,
31    define those names to be the normal ones instead.  */
32 # undef __strchrnul
33 # define __strchrnul strchrnul
34 #endif
35
36 /* Parse comma separated suboption from *OPTIONP and match against
37    strings in TOKENS.  If found return index and set *VALUEP to
38    optional value introduced by an equal sign.  If the suboption is
39    not part of TOKENS return in *VALUEP beginning of unknown
40    suboption.  On exit *OPTIONP is set to the beginning of the next
41    token or at the terminating NUL character.  */
42 int
43 getsubopt (char **optionp, char *const *tokens, char **valuep)
44 {
45   char *endp, *vstart;
46   int cnt;
47
48   if (**optionp == '\0')
49     return -1;
50
51   /* Find end of next token.  */
52   endp = __strchrnul (*optionp, ',');
53
54   /* Find start of value.  */
55   vstart = memchr (*optionp, '=', endp - *optionp);
56   if (vstart == NULL)
57     vstart = endp;
58
59   /* Try to match the characters between *OPTIONP and VSTART against
60      one of the TOKENS.  */
61   for (cnt = 0; tokens[cnt] != NULL; ++cnt)
62     if (strncmp (*optionp, tokens[cnt], vstart - *optionp) == 0
63         && tokens[cnt][vstart - *optionp] == '\0')
64       {
65         /* We found the current option in TOKENS.  */
66         *valuep = vstart != endp ? vstart + 1 : NULL;
67
68         if (*endp != '\0')
69           *endp++ = '\0';
70         *optionp = endp;
71
72         return cnt;
73       }
74
75   /* The current suboption does not match any option.  */
76   *valuep = *optionp;
77
78   if (*endp != '\0')
79     *endp++ = '\0';
80   *optionp = endp;
81
82   return -1;
83 }