1/*
2*******************************************************************************
3*
4*   Copyright (C) 2002-2014, 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#include "reslist.h"
28
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 */
37#define GENRB_VERSION "3.3"
38
39U_CDECL_BEGIN
40
41U_CAPI void processFile(
42    const char *filename,
43    const char* cp,
44    const char *inputDir,
45    const char *outputDir,
46    const char *packageName,
47    UBool omitBinaryCollation,
48    UErrorCode *status);
49
50U_CDECL_END
51
52#endif
53