2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2002-03-16 03:40:05 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (C) 2002-2015, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2002-03-16 03:40:05 +00:00
|
|
|
*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
|
|
|
* File genrb.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GENRB_H
|
|
|
|
#define GENRB_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "unicode/putil.h"
|
|
|
|
#include "cmemory.h"
|
|
|
|
#include "cstring.h"
|
|
|
|
#include "filestrm.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "ucbuf.h"
|
2002-04-23 23:11:09 +00:00
|
|
|
#include "errmsg.h"
|
2002-03-16 03:40:05 +00:00
|
|
|
#include "parse.h"
|
2005-03-08 07:05:49 +00:00
|
|
|
#include "rbutil.h"
|
2002-03-16 03:40:05 +00:00
|
|
|
|
|
|
|
#include "toolutil.h"
|
|
|
|
#include "uoptions.h"
|
|
|
|
|
|
|
|
#include "unicode/ucol.h"
|
|
|
|
#include "unicode/uloc.h"
|
|
|
|
|
|
|
|
/* The version of genrb */
|
2015-08-07 18:44:38 +00:00
|
|
|
#define GENRB_VERSION "56"
|
2002-03-16 03:40:05 +00:00
|
|
|
|
2011-05-27 18:56:14 +00:00
|
|
|
U_CDECL_BEGIN
|
|
|
|
|
2010-11-01 22:23:49 +00:00
|
|
|
U_CAPI void processFile(
|
|
|
|
const char *filename,
|
|
|
|
const char* cp,
|
|
|
|
const char *inputDir,
|
|
|
|
const char *outputDir,
|
|
|
|
const char *packageName,
|
2011-12-06 00:23:46 +00:00
|
|
|
UBool omitBinaryCollation,
|
2010-11-01 22:23:49 +00:00
|
|
|
UErrorCode *status);
|
2002-03-16 03:40:05 +00:00
|
|
|
|
2011-05-27 18:56:14 +00:00
|
|
|
U_CDECL_END
|
|
|
|
|
2010-11-01 22:23:49 +00:00
|
|
|
#endif
|