/usr/include/uninameslist.h is in libuninameslist-dev 0.5.20150701-1.
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 | #ifndef _NAMESLIST_H
# define _NAMESLIST_H
/* This file was generated using the program 'buildnameslist.c' */
struct unicode_block {
int start, end;
const char *name;
};
struct unicode_nameannot {
const char *name, *annot;
};
/* NOTE: Build your program to access UnicodeBlock[], not UnicodeBlock[276] */
/* because newer version of NamesList.txt can have more blocks than before. */
/* To allow for future use of libuninameslist without changing your program */
/* you can test for (UnicodeBlock[i].end>=0x10ffff) to find the last block. */
#define UNICODE_BLOCK_MAX 276
extern const struct unicode_block UnicodeBlock[276];
/* NOTE: These 4 constants are correct for this version of libuninameslist, */
/* but can change for later versions of NamesList (use as an example guide) */
#define UNICODE_NAME_MAX 105
#define UNICODE_ANNOT_MAX 513
#define UNICODE_EN_NAME_MAX 83
#define UNICODE_EN_ANNOT_MAX 513
extern const struct unicode_nameannot * const *const UnicodeNameAnnot[];
/* Index by: UnicodeNameAnnot[(uni>>16)&0x1f][(uni>>8)&0xff][uni&0xff] */
/* At the beginning of lines (after a tab) within the annotation string, a: */
/* * should be replaced by a bullet U+2022 */
/* x should be replaced by a right arrow U+2192 */
/* : should be replaced by an equivalent U+224D */
/* # should be replaced by an approximate U+2245 */
/* = should remain itself */
/* Return a pointer to the name for this unicode value */
/* This value points to a constant string inside the library */
const char *uniNamesList_name(unsigned long uni);
/* Return a pointer to the annotations for this unicode value */
/* This value points to a constant string inside the library */
const char *uniNamesList_annot(unsigned long uni);
/* Return a pointer to the Nameslist.txt version number. */
/* This value points to a constant string inside the library */
const char *uniNamesList_NamesListVersion(void);
/* These functions are available in libuninameslist-0.4.20140731 and higher */
/* Version information for this <uninameslist.h> include file */
#define LIBUNINAMESLIST_MAJOR 0
#define LIBUNINAMESLIST_MINOR 5
/* Return number of blocks in this NamesList (Version 8.0). */
int uniNamesList_blockCount(void);
/* Return block number for this unicode value (-1 if bad unicode value) */
int uniNamesList_blockNumber(unsigned long uni);
/* Return unicode value starting this Unicode block (-1 if bad uniBlock). */
long uniNamesList_blockStart(int uniBlock);
/* Return unicode value ending this Unicode block (-1 if bad uniBlock). */
long uniNamesList_blockEnd(int uniBlock);
/* Return a pointer to the blockname for this unicode block. */
/* This value points to a constant string inside the library */
const char *uniNamesList_blockName(int uniBlock);
#endif
|