2001-08-30 03:01:06 +00:00
|
|
|
/*
|
|
|
|
******************************************************************************
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2001-2001, International Business Machines *
|
|
|
|
* Corporation and others. All Rights Reserved. *
|
|
|
|
* *
|
|
|
|
******************************************************************************
|
|
|
|
* file name: ucln_cmn.c
|
|
|
|
* encoding: US-ASCII
|
|
|
|
* tab size: 8 (not used)
|
|
|
|
* indentation:4
|
|
|
|
*
|
|
|
|
* created on: 2001July05
|
|
|
|
* created by: George Rhoten
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ucln.h"
|
|
|
|
#include "ucln_in.h"
|
|
|
|
|
2001-08-31 02:14:47 +00:00
|
|
|
static UBool i18n_cleanup(void)
|
2001-08-30 03:01:06 +00:00
|
|
|
{
|
2002-08-21 19:12:24 +00:00
|
|
|
#ifdef ICU_DATEFORMATSYMBOLS_USE_DEPRECATES
|
2001-11-15 19:27:10 +00:00
|
|
|
dateFormatSymbols_cleanup();
|
2002-08-21 19:12:24 +00:00
|
|
|
#endif
|
|
|
|
transliterator_cleanup();
|
2001-09-21 00:19:53 +00:00
|
|
|
timeZone_cleanup();
|
|
|
|
ucol_cleanup();
|
|
|
|
ucol_bld_cleanup();
|
2001-08-31 02:14:47 +00:00
|
|
|
return TRUE;
|
2001-08-30 03:01:06 +00:00
|
|
|
}
|
|
|
|
|
2001-08-31 02:14:47 +00:00
|
|
|
void ucln_i18n_registerCleanup()
|
2001-08-30 03:01:06 +00:00
|
|
|
{
|
|
|
|
ucln_registerCleanup(UCLN_I18N, i18n_cleanup);
|
|
|
|
}
|
|
|
|
|