]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | ******************************************************************************* | |
3 | * | |
57a6839d | 4 | * Copyright (C) 1998-2014, International Business Machines |
b75a7d8f A |
5 | * Corporation and others. All Rights Reserved. |
6 | * | |
7 | ******************************************************************************* | |
8 | * | |
9 | * File parse.h | |
10 | * | |
11 | * Modification History: | |
12 | * | |
13 | * Date Name Description | |
14 | * 05/26/99 stephen Creation. | |
15 | ******************************************************************************* | |
16 | */ | |
17 | ||
18 | #ifndef PARSE_H | |
19 | #define PARSE_H 1 | |
20 | ||
21 | #include "unicode/utypes.h" | |
22 | #include "filestrm.h" | |
23 | #include "ucbuf.h" | |
24 | ||
25 | U_CDECL_BEGIN | |
26 | /* One time parser initalisation */ | |
57a6839d | 27 | void initParser(); |
b75a7d8f A |
28 | |
29 | /* Parse a ResourceBundle text file */ | |
4388f060 | 30 | struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir, |
57a6839d A |
31 | const char *filename, |
32 | UBool makeBinaryCollation, UBool omitCollationRules, UErrorCode *status); | |
b75a7d8f A |
33 | |
34 | U_CDECL_END | |
35 | ||
36 | #endif |