• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
1/* Association between Unicode characters and their names.
2   Copyright (C) 2000-2002, 2005, 2007 Free Software Foundation, Inc.
3
4   This program is free software: you can redistribute it and/or modify it
5   under the terms of the GNU General Public License as published
6   by the Free Software Foundation; either version 3 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   Lesser General Public License for more details.
13
14   You should have received a copy of the GNU General Public License
15   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17#ifndef _UNINAME_H
18#define _UNINAME_H
19
20#include "unitypes.h"
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26/* Required size of buffer for a Unicode character name.  */
27#define UNINAME_MAX 256
28
29/* Looks up the name of a Unicode character, in uppercase ASCII.
30   Returns the filled buf, or NULL if the character does not have a name.  */
31extern char *
32       unicode_character_name (ucs4_t uc, char *buf);
33
34/* Looks up the Unicode character with a given name, in upper- or lowercase
35   ASCII.  Returns the character if found, or UNINAME_INVALID if not found.  */
36extern ucs4_t
37       unicode_name_character (const char *name);
38#define UNINAME_INVALID ((ucs4_t) 0xFFFF)
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif /* _UNINAME_H */
45