/usr/include/gucharmap-2.90/gucharmap/gucharmap-unicode-info.h is in libgucharmap-2-90-dev 1:3.10.1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | /*
* Copyright © 2004 Noah Levitt
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 3 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
*/
#if !defined (__GUCHARMAP_GUCHARMAP_H_INSIDE__) && !defined (GUCHARMAP_COMPILATION)
#error "Only <gucharmap/gucharmap.h> can be included directly."
#endif
#ifndef GUCHARMAP_UNICODE_INFO_H
#define GUCHARMAP_UNICODE_INFO_H
#include <glib.h>
G_BEGIN_DECLS
typedef enum {
GUCHARMAP_UNICODE_VERSION_UNASSIGNED,
GUCHARMAP_UNICODE_VERSION_1_1,
GUCHARMAP_UNICODE_VERSION_2_0,
GUCHARMAP_UNICODE_VERSION_2_1,
GUCHARMAP_UNICODE_VERSION_3_0,
GUCHARMAP_UNICODE_VERSION_3_1,
GUCHARMAP_UNICODE_VERSION_3_2,
GUCHARMAP_UNICODE_VERSION_4_0,
GUCHARMAP_UNICODE_VERSION_4_1,
GUCHARMAP_UNICODE_VERSION_5_0,
GUCHARMAP_UNICODE_VERSION_5_1,
GUCHARMAP_UNICODE_VERSION_5_2,
GUCHARMAP_UNICODE_VERSION_6_0,
GUCHARMAP_UNICODE_VERSION_6_1,
GUCHARMAP_UNICODE_VERSION_6_2,
GUCHARMAP_UNICODE_VERSION_6_3,
GUCHARMAP_UNICODE_VERSION_LATEST = GUCHARMAP_UNICODE_VERSION_6_3 /* private, will move forward with each revision */
} GucharmapUnicodeVersion;
/* return values are read-only */
G_CONST_RETURN gchar * gucharmap_get_unicode_name (gunichar uc);
G_CONST_RETURN gchar * gucharmap_get_unicode_data_name (gunichar uc);
gint gucharmap_get_unicode_data_name_count (void);
GucharmapUnicodeVersion gucharmap_get_unicode_version (gunichar uc);
G_CONST_RETURN gchar * gucharmap_get_unicode_category_name (gunichar uc);
gint gucharmap_get_unihan_count (void);
G_CONST_RETURN gchar * gucharmap_get_unicode_kDefinition (gunichar uc);
G_CONST_RETURN gchar * gucharmap_get_unicode_kCantonese (gunichar uc);
G_CONST_RETURN gchar * gucharmap_get_unicode_kMandarin (gunichar uc);
G_CONST_RETURN gchar * gucharmap_get_unicode_kTang (gunichar uc);
G_CONST_RETURN gchar * gucharmap_get_unicode_kKorean (gunichar uc);
G_CONST_RETURN gchar * gucharmap_get_unicode_kJapaneseKun (gunichar uc);
G_CONST_RETURN gchar * gucharmap_get_unicode_kJapaneseOn (gunichar uc);
/* nameslist stuff */
G_CONST_RETURN gchar ** gucharmap_get_nameslist_stars (gunichar uc);
G_CONST_RETURN gchar ** gucharmap_get_nameslist_equals (gunichar uc);
gunichar * gucharmap_get_nameslist_exes (gunichar uc);
G_CONST_RETURN gchar ** gucharmap_get_nameslist_pounds (gunichar uc);
G_CONST_RETURN gchar ** gucharmap_get_nameslist_colons (gunichar uc);
gboolean gucharmap_unichar_validate (gunichar uc);
gint gucharmap_unichar_to_printable_utf8 (gunichar uc,
gchar *outbuf);
GUnicodeType gucharmap_unichar_type (gunichar uc);
gboolean gucharmap_unichar_isdefined (gunichar uc);
gboolean gucharmap_unichar_isgraph (gunichar uc);
/* defined in gucharmap-script-codepoint-list.c */
G_CONST_RETURN gchar ** gucharmap_unicode_list_scripts (void);
G_CONST_RETURN gchar * gucharmap_unicode_get_script_for_char (gunichar wc);
G_CONST_RETURN gchar * gucharmap_unicode_version_to_string (GucharmapUnicodeVersion version);
/* doesn't really belong here, but no better place was available */
gunichar gucharmap_unicode_get_locale_character (void);
G_END_DECLS
#endif /* #ifndef GUCHARMAP_UNICODE_INFO_H */
|