This source file includes following definitions.
- u8_prev
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 #include <config.h>
19
20
21 #include "unistr.h"
22
23 const uint8_t *
24 u8_prev (ucs4_t *puc, const uint8_t *s, const uint8_t *start)
25 {
26
27 if (s != start)
28 {
29 uint8_t c_1 = s[-1];
30
31 if (c_1 < 0x80)
32 {
33 *puc = c_1;
34 return s - 1;
35 }
36 if ((c_1 ^ 0x80) < 0x40)
37 if (s - 1 != start)
38 {
39 uint8_t c_2 = s[-2];
40
41 if (c_2 >= 0xc2 && c_2 < 0xe0)
42 {
43 *puc = ((unsigned int) (c_2 & 0x1f) << 6)
44 | (unsigned int) (c_1 ^ 0x80);
45 return s - 2;
46 }
47 if ((c_2 ^ 0x80) < 0x40)
48 if (s - 2 != start)
49 {
50 uint8_t c_3 = s[-3];
51
52 if (c_3 >= 0xe0 && c_3 < 0xf0
53 && (c_3 >= 0xe1 || c_2 >= 0xa0)
54 && (c_3 != 0xed || c_2 < 0xa0))
55 {
56 *puc = ((unsigned int) (c_3 & 0x0f) << 12)
57 | ((unsigned int) (c_2 ^ 0x80) << 6)
58 | (unsigned int) (c_1 ^ 0x80);
59 return s - 3;
60 }
61 if ((c_3 ^ 0x80) < 0x40)
62 if (s - 3 != start)
63 {
64 uint8_t c_4 = s[-4];
65
66 if (c_4 >= 0xf0 && c_4 < 0xf8
67 && (c_4 >= 0xf1 || c_3 >= 0x90)
68 && (c_4 < 0xf4 || (c_4 == 0xf4 && c_3 < 0x90)))
69 {
70 *puc = ((unsigned int) (c_4 & 0x07) << 18)
71 | ((unsigned int) (c_3 ^ 0x80) << 12)
72 | ((unsigned int) (c_2 ^ 0x80) << 6)
73 | (unsigned int) (c_1 ^ 0x80);
74 return s - 4;
75 }
76 }
77 }
78 }
79 }
80 return NULL;
81 }