1/* Search character in UTF-16 string.
2   Copyright (C) 1999, 2002, 2006-2007, 2009-2010 Free Software Foundation,
3   Inc.
4   Written by Bruno Haible <bruno@clisp.org>, 2002.
5
6   This program is free software: you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published
8   by the Free Software Foundation; either version 3 of the License, or
9   (at your option) 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 GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19#include <config.h>
20
21/* Specification.  */
22#include "unistr.h"
23
24uint16_t *
25u16_strrchr (const uint16_t *s, ucs4_t uc)
26{
27  /* Calling u16_strlen and then searching from the other end would cause more
28     memory accesses. Avoid that, at the cost of a few more comparisons.  */
29  uint16_t *result = NULL;
30  uint16_t c[2];
31
32  if (uc < 0x10000)
33    {
34      uint16_t c0 = uc;
35
36      for (;; s++)
37        {
38          if (*s == c0)
39            result = (uint16_t *) s;
40          if (*s == 0)
41            break;
42        }
43    }
44  else
45    switch (u16_uctomb_aux (c, uc, 2))
46      {
47      case 2:
48        if (*s)
49          {
50            uint16_t c0 = c[0];
51            uint16_t c1 = c[1];
52
53            /* FIXME: Maybe walking the string via u16_mblen is a win?  */
54            for (;; s++)
55              {
56                if (s[1] == 0)
57                  break;
58                if (*s == c0 && s[1] == c1)
59                  result = (uint16_t *) s;
60              }
61          }
62        break;
63      }
64  return result;
65}
66