5 Free Software Foundation, Inc.
6 Written by Werner Lemberg <wl@gnu.org>
8 This file is part of groff.
10 groff is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 2, or (at your option) any later
15 groff is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 You should have received a copy of the GNU General Public License along
21 with groff; see the file COPYING. If not, write to the Free Software
22 Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA. */
26 #include "stringclass.h"
30 const char *check_unicode_name(const char *u
)
37 const char *start
= p
;
39 // only uppercase hex digits allowed
43 val
= val
*0x10 + (*p
-'0');
45 val
= val
*0x10 + (*p
-'A'+10);
48 // biggest Unicode value is U+10FFFF
52 if (*p
== '\0' || *p
== '_')
55 // surrogates not allowed
56 if ((val
>= 0xD800 && val
<= 0xDBFF) || (val
>= 0xDC00 && val
<= 0xDFFF))
59 if (*start
== '0') // no leading zeros allowed if > 0xFFFF
62 else if (p
- start
!= 4) // otherwise, check for exactly 4 hex digits