Coverage Report

Created: 2023-03-26 07:33

/src/libunistring/lib/unistr/u8-prev.c
Line
Count
Source (jump to first uncovered line)
1
/* Iterate over previous character in UTF-8 string.
2
   Copyright (C) 2002, 2006-2007, 2009-2022 Free Software Foundation, Inc.
3
   Written by Bruno Haible <bruno@clisp.org>, 2002.
4
5
   This file is free software: you can redistribute it and/or modify
6
   it under the terms of the GNU Lesser General Public License as
7
   published by the Free Software Foundation; either version 2.1 of the
8
   License, or (at your option) any later version.
9
10
   This file 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 Lesser General Public License for more details.
14
15
   You should have received a copy of the GNU Lesser General Public License
16
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
17
18
#include <config.h>
19
20
/* Specification.  */
21
#include "unistr.h"
22
23
const uint8_t *
24
u8_prev (ucs4_t *puc, const uint8_t *s, const uint8_t *start)
25
0
{
26
  /* Keep in sync with unistr.h and u8-mbtouc-aux.c.  */
27
0
  if (s != start)
28
0
    {
29
0
      uint8_t c_1 = s[-1];
30
31
0
      if (c_1 < 0x80)
32
0
        {
33
0
          *puc = c_1;
34
0
          return s - 1;
35
0
        }
36
0
      if ((c_1 ^ 0x80) < 0x40)
37
0
        if (s - 1 != start)
38
0
          {
39
0
            uint8_t c_2 = s[-2];
40
41
0
            if (c_2 >= 0xc2 && c_2 < 0xe0)
42
0
              {
43
0
                *puc = ((unsigned int) (c_2 & 0x1f) << 6)
44
0
                       | (unsigned int) (c_1 ^ 0x80);
45
0
                return s - 2;
46
0
              }
47
0
            if ((c_2 ^ 0x80) < 0x40)
48
0
              if (s - 2 != start)
49
0
                {
50
0
                  uint8_t c_3 = s[-3];
51
52
0
                  if (c_3 >= 0xe0 && c_3 < 0xf0
53
0
                      && (c_3 >= 0xe1 || c_2 >= 0xa0)
54
0
                      && (c_3 != 0xed || c_2 < 0xa0))
55
0
                    {
56
0
                      *puc = ((unsigned int) (c_3 & 0x0f) << 12)
57
0
                             | ((unsigned int) (c_2 ^ 0x80) << 6)
58
0
                             | (unsigned int) (c_1 ^ 0x80);
59
0
                      return s - 3;
60
0
                    }
61
0
                  if ((c_3 ^ 0x80) < 0x40)
62
0
                    if (s - 3 != start)
63
0
                      {
64
0
                        uint8_t c_4 = s[-4];
65
66
0
                        if (c_4 >= 0xf0 && c_4 < 0xf8
67
0
                            && (c_4 >= 0xf1 || c_3 >= 0x90)
68
0
                            && (c_4 < 0xf4 || (c_4 == 0xf4 && c_3 < 0x90)))
69
0
                          {
70
0
                            *puc = ((unsigned int) (c_4 & 0x07) << 18)
71
0
                                   | ((unsigned int) (c_3 ^ 0x80) << 12)
72
0
                                   | ((unsigned int) (c_2 ^ 0x80) << 6)
73
0
                                   | (unsigned int) (c_1 ^ 0x80);
74
0
                            return s - 4;
75
0
                          }
76
0
                      }
77
0
                }
78
0
          }
79
0
    }
80
0
  return NULL;
81
0
}