annotate lib/unistr/u-strcspn.h @ 17431:744044c581c4

getcwd-lgpl: port to Tru64 * lib/getcwd-lgpl.c: Include <stdlib.h>, for malloc etc. Problem reported by Steven M. Schweda in <http://lists.gnu.org/archive/html/bug-gzip/2013-06/msg00010.html>.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 11 Jun 2013 19:52:46 -0700
parents e542fd46ad6f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7833
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Search for some characters in UTF-8/UTF-16/UTF-32 string.
17249
e542fd46ad6f maint: update all copyright year number ranges
Eric Blake <eblake@redhat.com>
parents: 16201
diff changeset
2 Copyright (C) 1999, 2002, 2006, 2009-2013 Free Software Foundation, Inc.
7833
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 Written by Bruno Haible <bruno@clisp.org>, 2002.
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4
9307
ad8a75a45dc9 Change copyright notice from LGPLv2.0+ to LGPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7833
diff changeset
5 This program is free software: you can redistribute it and/or modify it
ad8a75a45dc9 Change copyright notice from LGPLv2.0+ to LGPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7833
diff changeset
6 under the terms of the GNU Lesser General Public License as published
ad8a75a45dc9 Change copyright notice from LGPLv2.0+ to LGPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7833
diff changeset
7 by the Free Software Foundation; either version 3 of the License, or
ad8a75a45dc9 Change copyright notice from LGPLv2.0+ to LGPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7833
diff changeset
8 (at your option) any later version.
7833
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9307
ad8a75a45dc9 Change copyright notice from LGPLv2.0+ to LGPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7833
diff changeset
13 Lesser General Public License for more details.
7833
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14
9307
ad8a75a45dc9 Change copyright notice from LGPLv2.0+ to LGPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7833
diff changeset
15 You should have received a copy of the GNU Lesser General Public License
ad8a75a45dc9 Change copyright notice from LGPLv2.0+ to LGPLv3+.
Bruno Haible <bruno@clisp.org>
parents: 7833
diff changeset
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
7833
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 size_t
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 FUNC (const UNIT *str, const UNIT *reject)
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 {
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 /* Optimize two cases. */
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 if (reject[0] == 0)
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 return U_STRLEN (str);
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 {
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 ucs4_t uc;
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 int count = U_STRMBTOUC (&uc, reject);
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 if (count >= 0 && reject[count] == 0)
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 {
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
29 const UNIT *found = U_STRCHR (str, uc);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
30 if (found != NULL)
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
31 return found - str;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
32 else
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
33 return U_STRLEN (str);
7833
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 }
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 }
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 /* General case. */
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 {
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 const UNIT *ptr = str;
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
40 for (;;)
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
41 {
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
42 ucs4_t uc;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
43 int count = U_STRMBTOUC (&uc, ptr);
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
44 if (count == 0)
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
45 return ptr - str;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
46 if (count < 0)
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
47 break;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
48 if (U_STRCHR (reject, uc))
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
49 return ptr - str;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
50 ptr += count;
7833
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
51 }
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
52 return U_STRLEN (str);
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
53 }
93f0ce2896ba New modules 'unistr/u8-strcspn', 'unistr/u16-strcspn', 'unistr/u32-strcspn'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
54 }