1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/tools/genrb/parse.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +/* 1.5 +******************************************************************************* 1.6 +* 1.7 +* Copyright (C) 1998-2014, International Business Machines 1.8 +* Corporation and others. All Rights Reserved. 1.9 +* 1.10 +******************************************************************************* 1.11 +* 1.12 +* File parse.h 1.13 +* 1.14 +* Modification History: 1.15 +* 1.16 +* Date Name Description 1.17 +* 05/26/99 stephen Creation. 1.18 +******************************************************************************* 1.19 +*/ 1.20 + 1.21 +#ifndef PARSE_H 1.22 +#define PARSE_H 1 1.23 + 1.24 +#include "unicode/utypes.h" 1.25 +#include "filestrm.h" 1.26 +#include "ucbuf.h" 1.27 + 1.28 +U_CDECL_BEGIN 1.29 +/* One time parser initalisation */ 1.30 +void initParser(); 1.31 + 1.32 +/* Parse a ResourceBundle text file */ 1.33 +struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir, 1.34 + UBool makeBinaryCollation, UBool omitCollationRules, UErrorCode *status); 1.35 + 1.36 +U_CDECL_END 1.37 + 1.38 +#endif