9307dbf205
X-SVN-Rev: 7474
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
******************************************************************************
|
|
* *
|
|
* Copyright (C) 2001-2001, International Business Machines *
|
|
* Corporation and others. All Rights Reserved. *
|
|
* *
|
|
******************************************************************************
|
|
* file name: ucln_cmn.h
|
|
* encoding: US-ASCII
|
|
* tab size: 8 (not used)
|
|
* indentation:4
|
|
*
|
|
* created on: 2001July05
|
|
* created by: George Rhoten
|
|
*/
|
|
|
|
#ifndef __UCLN_CMN_H__
|
|
#define __UCLN_CMN_H__
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
/* Main library cleanup function. */
|
|
U_CFUNC void ucln_i18n_registerCleanup(void);
|
|
|
|
/* See common/ucln.h for details on adding a cleanup function. */
|
|
|
|
U_CFUNC UBool transliterator_cleanup(void);
|
|
|
|
U_CFUNC UBool unicodePropertySet_cleanup(void);
|
|
|
|
U_CFUNC UBool dateFormatSymbols_cleanup(void);
|
|
|
|
U_CFUNC UBool timeZone_cleanup(void);
|
|
|
|
U_CFUNC UBool ucol_cleanup(void);
|
|
|
|
U_CFUNC UBool ucol_bld_cleanup(void);
|
|
|
|
#endif
|