1 /*
2 *******************************************************************************
3 *
4 *   Copyright (C) 2002-2015, International Business Machines
5 *   Corporation and others.  All Rights Reserved.
6 *
7 *******************************************************************************
8 *
9 * File genrb.h
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"
26 #include "rbutil.h"
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 */
35 #define GENRB_VERSION "56"
36 
37 U_CDECL_BEGIN
38 
39 U_CAPI void processFile(
40     const char *filename,
41     const char* cp,
42     const char *inputDir,
43     const char *outputDir,
44     const char *packageName,
45     UBool omitBinaryCollation,
46     UErrorCode *status);
47 
48 U_CDECL_END
49 
50 #endif
51