1999-08-16 21:50:52 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
1999-12-13 22:28:37 +00:00
|
|
|
*
|
2003-06-03 20:58:22 +00:00
|
|
|
* Copyright (C) 1998-2003, International Business Machines
|
1999-12-13 22:28:37 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
1999-08-16 21:50:52 +00:00
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
* File parse.h
|
|
|
|
*
|
|
|
|
* Modification History:
|
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 05/26/99 stephen Creation.
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PARSE_H
|
|
|
|
#define PARSE_H 1
|
|
|
|
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/utypes.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#include "filestrm.h"
|
2001-05-10 16:54:09 +00:00
|
|
|
#include "ucbuf.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-09-25 19:28:25 +00:00
|
|
|
U_CDECL_BEGIN
|
2001-07-11 20:31:32 +00:00
|
|
|
/* One time parser initalisation */
|
2003-04-30 00:49:01 +00:00
|
|
|
void initParser(UBool makeBinaryCollation);
|
2001-07-11 20:31:32 +00:00
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
/* Parse a ResourceBundle text file */
|
2001-07-11 20:31:32 +00:00
|
|
|
struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, UErrorCode *status);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2001-09-25 19:28:25 +00:00
|
|
|
U_CDECL_END
|
|
|
|
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
2001-09-25 19:28:25 +00:00
|
|
|
|