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