blob: a6fc8d571a2fade093fc34e196396d8e140fe36a (
plain)
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
|
/*
*******************************************************************************
*
* Copyright (C) 2004-2005, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
* file name: genbidi.h
* encoding: US-ASCII
* tab size: 8 (not used)
* indentation:4
*
* created on: 2004dec30
* created by: Markus W. Scherer
*/
#ifndef __GENBIDI_H__
#define __GENBIDI_H__
#include "unicode/utypes.h"
U_CDECL_BEGIN
/* genbidi ------------------------------------------------------------------ */
/* global flags */
extern UBool beVerbose, haveCopyright;
/* properties vectors in genbidi.c */
extern uint32_t *pv;
/* prototypes */
U_CFUNC void
writeUCDFilename(char *basename, const char *filename, const char *suffix);
extern void
setUnicodeVersion(const char *v);
extern void
addMirror(UChar32 src, UChar32 mirror);
extern void
generateData(const char *dataDir, UBool csource);
U_CDECL_END
#endif
|