/usr/include/gucharmap-2.90/gucharmap/gucharmap.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 | /*
* Copyright © 2004 Noah Levitt
* Copyright © 2008 Christian Persch
*
* 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 2 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
*/
#ifndef GUCHARMAP_H
#define GUCHARMAP_H
#define __GUCHARMAP_GUCHARMAP_H_INSIDE__
#include <glib.h>
#if defined(GUCHARMAP_DISABLE_DEPRECATION_WARNINGS) || !GLIB_CHECK_VERSION (2, 31, 0)
#define GUCHARMAP_DEPRECATED
#define GUCHARMAP_DEPRECATED_FOR(f)
#else
#define GUCHARMAP_DEPRECATED G_DEPRECATED
#define GUCHARMAP_DEPRECATED_FOR(f) G_DEPRECATED_FOR(f)
#endif
#define GUCHARMAP_VERSION_MAJOR (3)
#define GUCHARMAP_VERSION_MINOR (10)
#define GUCHARMAP_VERSION_MICRO (1)
#define GUCHARMAP_CHECK_VERSION(major,minor,micro) \
(GUCHARMAP_VERSION_MAJOR > (major) || \
(GUCHARMAP_VERSION_MAJOR == (major) && GUCHARMAP_VERSION_MINOR > (minor)) || \
(GUCHARMAP_VERSION_MAJOR == (major) && GUCHARMAP_VERSION_MINOR == (minor) && GUCHARMAP_VERSION_MICRO >= (micro)))
#include <gucharmap/gucharmap-codepoint-list.h>
#include <gucharmap/gucharmap-block-codepoint-list.h>
#include <gucharmap/gucharmap-script-codepoint-list.h>
#include <gucharmap/gucharmap-chapters-model.h>
#include <gucharmap/gucharmap-block-chapters-model.h>
#include <gucharmap/gucharmap-script-chapters-model.h>
#include <gucharmap/gucharmap-chartable.h>
#include <gucharmap/gucharmap-charmap.h>
#include <gucharmap/gucharmap-type-builtins.h>
#include <gucharmap/gucharmap-unicode-info.h>
#undef GUCHARMAP_DEPRECATED
#undef GUCHARMAP_DEPRECATED_FOR
#undef __GUCHARMAP_GUCHARMAP_H_INSIDE__
#endif /* #ifndef GUCHARMAP_H */
|