2001-08-11 00:29:58 +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"
|
|
|
|
|
2001-08-25 01:13:21 +00:00
|
|
|
U_CAPI UBool U_EXPORT2 ucnv_cleanup(void);
|
2001-08-11 00:29:58 +00:00
|
|
|
|
2001-08-25 01:13:21 +00:00
|
|
|
U_CAPI UBool U_EXPORT2 ures_cleanup(void);
|
2001-08-11 00:29:58 +00:00
|
|
|
|
2001-08-25 01:13:21 +00:00
|
|
|
U_CAPI UBool U_EXPORT2 uloc_cleanup(void);
|
2001-08-11 00:29:58 +00:00
|
|
|
|
2001-08-25 01:13:21 +00:00
|
|
|
U_CAPI UBool U_EXPORT2 ustring_cleanup(void);
|
2001-08-11 00:29:58 +00:00
|
|
|
|
2001-08-17 00:18:49 +00:00
|
|
|
U_CAPI UBool U_EXPORT2 udata_cleanup(void);
|
|
|
|
|
2001-08-25 01:13:21 +00:00
|
|
|
U_CAPI UBool U_EXPORT2 ucnv_io_cleanup(void);
|
|
|
|
|
2001-08-11 00:29:58 +00:00
|
|
|
#endif
|