scuffed-code/icu4c/source/tools/genrb/parse.h

35 lines
874 B
C
Raw Normal View History

1999-08-16 21:50:52 +00:00
/*
*******************************************************************************
*
* Copyright (C) 1998-2006, International Business Machines
* 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
#include "unicode/utypes.h"
1999-08-16 21:50:52 +00:00
#include "filestrm.h"
#include "ucbuf.h"
1999-08-16 21:50:52 +00:00
U_CDECL_BEGIN
/* One time parser initalisation */
void initParser(UBool omitBinaryCollation, UBool omitCollationRules);
1999-08-16 21:50:52 +00:00
/* Parse a ResourceBundle text file */
struct SRBRoot* parse(UCHARBUF *buf, const char* inputDir, const char* outputDir, UErrorCode *status);
1999-08-16 21:50:52 +00:00
U_CDECL_END
1999-08-16 21:50:52 +00:00
#endif