77 lines
1.6 KiB
C
77 lines
1.6 KiB
C
// © 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/*
|
|
******************************************************************************
|
|
* *
|
|
* Copyright (C) 2003-2015, International Business Machines *
|
|
* Corporation and others. All Rights Reserved. *
|
|
* *
|
|
******************************************************************************
|
|
* file name: ulocdata.h
|
|
* encoding: UTF-8
|
|
* tab size: 8 (not used)
|
|
* indentation:4
|
|
*
|
|
* created on: 2003Oct21
|
|
* created by: Ram Viswanadha
|
|
*/
|
|
|
|
#ifndef __ULOCDATA_H__
|
|
#define __ULOCDATA_H__
|
|
|
|
#include "unicode/uloc.h"
|
|
|
|
/**
|
|
* @addtogroup ICU4C
|
|
* @{
|
|
* \file
|
|
* \brief C API: Provides access to locale data.
|
|
*/
|
|
|
|
/** Forward declaration of the ULocaleData structure. \xrefitem stable "Stable" "Stable List" ICU 3.6 */
|
|
struct ULocaleData;
|
|
|
|
/** A locale data object. \xrefitem stable "Stable" "Stable List" ICU 3.6 */
|
|
typedef struct ULocaleData ULocaleData;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Return the current CLDR version used by the library.
|
|
* @param versionArray fill-in that will receive the version number
|
|
* @param status error code - could be U_MISSING_RESOURCE_ERROR if the version was not found.
|
|
* \xrefitem stable "Stable" "Stable List" ICU 4.2
|
|
*/
|
|
U_CAPI void U_EXPORT2
|
|
ulocdata_getCLDRVersion(UVersionInfo versionArray, UErrorCode *status) __INTRODUCED_IN(31);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
/** @} */ // addtogroup
|