annotate lib/unistr/u32-prev.c @ 12421:e8d2c6fc33ad

Use spaces for indentation, not tabs.
author Bruno Haible <bruno@clisp.org>
date Thu, 10 Dec 2009 20:28:30 +0100
parents ad8a75a45dc9
children b5e42ef33b49
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7824
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 /* Iterate over previous character in UTF-32 string.
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 Written by Bruno Haible <bruno@clisp.org>, 2002.
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
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: 7824
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: 7824
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: 7824
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: 7824
diff changeset
8 (at your option) any later version.
7824
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
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: 7824
diff changeset
13 Lesser General Public License for more details.
7824
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
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: 7824
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: 7824
diff changeset
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
7824
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 #include <config.h>
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 /* Specification. */
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 #include "unistr.h"
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23 const uint32_t *
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 u32_prev (ucs4_t *puc, const uint32_t *s, const uint32_t *start)
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
25 {
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26 if (s != start)
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 {
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 uint32_t c_1 = s[-1];
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
30 #if CONFIG_UNICODE_SAFETY
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 if (c_1 < 0xd800 || (c_1 >= 0xe000 && c_1 < 0x110000))
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32 #endif
12421
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
33 {
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
34 *puc = c_1;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
35 return s - 1;
e8d2c6fc33ad Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents: 9307
diff changeset
36 }
7824
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
37 }
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 return NULL;
af4391ae3012 New modules 'unistr/u8-prev', 'unistr/u16-prev', 'unistr/u32-prev'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
39 }