* build-aux/config.guess: Update from config.
[gnulib.git] / lib / mbssep.c
1 /* Tokenizing a string.
2    Copyright (C) 2007 Free Software Foundation, Inc.
3    Written by Bruno Haible <bruno@clisp.org>, 2007.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2, or (at your option)
8    any later version.
9
10    This program 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
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software Foundation,
17    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
18
19 #include <config.h>
20
21 /* Specification.  */
22 #include <string.h>
23
24 #if HAVE_MBRTOWC
25 # include "mbuiter.h"
26 #endif
27
28 char *
29 mbssep (char **stringp, const char *delim)
30 {
31 #if HAVE_MBRTOWC
32   if (MB_CUR_MAX > 1)
33     {
34       char *start = *stringp;
35       char *ptr;
36
37       if (start == NULL)
38         return NULL;
39
40       /* No need to optimize the cases of 0 or 1 delimiters specially,
41          since mbspbrk already optimizes them.  */
42
43       ptr = mbspbrk (start, delim);
44
45       if (ptr == NULL)
46         {
47           *stringp = NULL;
48           return start;
49         }
50       else
51         {
52           mbui_iterator_t iter;
53
54           mbui_init (iter, ptr);
55           if (!mbui_avail (iter))
56             abort ();
57           mbui_advance (iter);
58           *ptr = '\0';
59           *stringp = (char *) mbui_cur_ptr (iter);
60           return start;
61         }
62     }
63   else
64 #endif
65     return strsep (stringp, delim);
66 }