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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
#ifndef UN_NAMESLIST_H
# define UN_NAMESLIST_H
/* This file was generated using the program 'buildnameslist.c' */
#ifdef __cplusplus
extern "C" {
#endif
struct unicode_block {
int start, end;
const char *name;
};
struct unicode_nameannot {
const char *name, *annot;
};
/* NOTE: Build your program to access the functions if using multilanguage. */
#define UNICODE_BLOCK_MAX 322
#define UNICODE_EN_BLOCK_MAX 322
extern const struct unicode_block UnicodeBlock[322];
/* 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 100
#define UNICODE_ANNOT_MAX 609
#define UNICODE_EN_NAME_MAX 88
#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 */
/* % should be replaced by a reference mark U+203B */
/* x should be replaced by a right arrow U+2192 */
/* ~ should be replaced by a swung dash U+2053 */
/* : should be replaced by an equivalent U+2261 */
/* # should be replaced by an approximate U+2248 */
/* = 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);
/* Returns 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 1
#define LIBUNINAMESLIST_MINOR 7
/* Return number of blocks in this NamesList (Version 13.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 (bad uniBlock = -1) */
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);
/* These functions are available in libuninameslist-20180408 and higher */
/* Return count of how many names2 are found in this version of library */
int uniNamesList_names2cnt(void);
/* Return list location for this unicode value. Return -1 if not found. */
int uniNamesList_names2getU(unsigned long uni);
/* Return unicode value with names2 (0<=count<uniNamesList_names2cnt(). */
long uniNamesList_names2val(int count);
/* Stringlength of names2. Use this if you want to truncate annotations */
int uniNamesList_names2lnC(int count);
int uniNamesList_names2lnU(unsigned long uni);
/* Return pointer to start of normalized alias names2 within annotation */
const char *uniNamesList_names2anC(int count);
const char *uniNamesList_names2anU(unsigned long uni);
/* These functions are available in libuninameslist-20200413 and higher */
/* Return language codes available from libraries. 0=English, 1=French. */
const char *uniNamesList_Languages(unsigned int lang);
const char *uniNamesList_NamesListVersionAlt(unsigned int lang);
/* Return pointer to name/annotation for this unicode value using lang. */
/* Return English if language does not have information for this Ucode. */
const char *uniNamesList_nameAlt(unsigned long uni, unsigned int lang);
const char *uniNamesList_annotAlt(unsigned long uni, unsigned int lang);
/* Returns 2 lang pointers to names/annotations for this unicode value, */
/* Return str0=English, and str1=language_version (or NULL if no info). */
int uniNamesList_nameBoth(unsigned long uni, unsigned int lang, const char **str0, const char **strl);
int uniNamesList_annotBoth(unsigned long uni, unsigned int lang, const char **str0, const char **str1);
/* Blocklists won't sync if they are different versions. 0=ok, -1=error */
int uniNamesList_blockCountAlt(unsigned int lang);
long uniNamesList_blockStartAlt(int uniBlock, unsigned int lang);
long uniNamesList_blockEndAlt(int uniBlock, unsigned int lang);
const char *uniNamesList_blockNameAlt(int uniBlock, unsigned int lang);
int uniNamesList_blockNumberBoth(unsigned long uni, unsigned int lang, int *bn0, int *bn1);
#ifdef __cplusplus
}
#endif
#endif
|