scuffed-code/icu4c/source/extra/ustdio/loccache.h
Markus Scherer 61969c8c50 ICU-2248 modularize ICU
X-SVN-Rev: 9934
2002-10-01 01:26:49 +00:00

40 lines
924 B
C

/*
*******************************************************************************
*
* Copyright (C) 1998-1999, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
*
* File loccache.h
*
* Modification History:
*
* Date Name Description
* 11/18/98 stephen Creation.
* 03/11/99 stephen Modified for new C API.
*******************************************************************************
*/
#ifndef LOCCACHE_H
#define LOCCACHE_H
#include "unicode/utypes.h"
#if !UCONFIG_NO_FORMATTING
#include "locbund.h"
/* The global LocaleCacheInfo cache */
extern struct UHashtable *gLocaleCache;
ULocaleBundle*
u_loccache_get(const char *loc);
/* Main library cleanup function. */
U_CFUNC void ucln_ustdio_registerCleanup(void);
#endif /* #if !UCONFIG_NO_FORMATTING */
#endif