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.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. */
|
2001-08-31 02:14:47 +00:00
|
|
|
U_CFUNC void ucln_i18n_registerCleanup(void);
|
2001-08-30 03:01:06 +00:00
|
|
|
|
2001-09-21 00:19:53 +00:00
|
|
|
/* See common/ucln.h for details on adding a cleanup function. */
|
2001-08-30 03:01:06 +00:00
|
|
|
|
2001-09-21 00:19:53 +00:00
|
|
|
U_CFUNC UBool transliterator_cleanup(void);
|
|
|
|
|
2001-08-30 03:01:06 +00:00
|
|
|
U_CFUNC UBool timeZone_cleanup(void);
|
|
|
|
|
2001-09-21 00:19:53 +00:00
|
|
|
U_CFUNC UBool ucol_cleanup(void);
|
|
|
|
|
|
|
|
U_CFUNC UBool ucol_bld_cleanup(void);
|
2001-09-19 16:50:06 +00:00
|
|
|
|
2002-11-07 20:06:39 +00:00
|
|
|
U_CFUNC UBool regex_cleanup(void);
|
|
|
|
|
2001-08-30 03:01:06 +00:00
|
|
|
#endif
|