]> git.saurik.com Git - apple/icu.git/blame - icuSources/tools/genrb/genrb.h
ICU-66108.tar.gz
[apple/icu.git] / icuSources / tools / genrb / genrb.h
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
b75a7d8f
A
3/*
4*******************************************************************************
5*
2ca993e8 6* Copyright (C) 2002-2015, International Business Machines
b75a7d8f
A
7* Corporation and others. All Rights Reserved.
8*
9*******************************************************************************
10*
11* File genrb.h
b75a7d8f
A
12*/
13
14#ifndef GENRB_H
15#define GENRB_H
16
17#include <stdio.h>
18#include "unicode/utypes.h"
19#include "unicode/putil.h"
20#include "cmemory.h"
21#include "cstring.h"
22#include "filestrm.h"
23
24
25#include "ucbuf.h"
26#include "errmsg.h"
27#include "parse.h"
73c04bcf 28#include "rbutil.h"
b75a7d8f
A
29
30#include "toolutil.h"
31#include "uoptions.h"
32
33#include "unicode/ucol.h"
34#include "unicode/uloc.h"
35
36/* The version of genrb */
2ca993e8 37#define GENRB_VERSION "56"
b75a7d8f 38
4388f060
A
39U_CDECL_BEGIN
40
729e4ab9
A
41U_CAPI void processFile(
42 const char *filename,
43 const char* cp,
44 const char *inputDir,
45 const char *outputDir,
46 const char *packageName,
4388f060 47 UBool omitBinaryCollation,
729e4ab9 48 UErrorCode *status);
b75a7d8f 49
4388f060
A
50U_CDECL_END
51
729e4ab9 52#endif