1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
/*
******************************************************************************
* Copyright (C) 2010-2011 Apple Inc. All Rights Reserved.
******************************************************************************
*/
#ifndef UPLRULE_H
#define UPLRULE_H
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
#include <_foundation_unicode/upluralrules.h>
/**
* NOTE - THE TEMPORARY APPLE INTERFACES DECLARED HERE ARE OBSOLETE, PLEASE USE
* THE REAL ICU EQUIVALENTS IN upluralrules.h
*/
/**
* A UPluralRules object for use in C programs.
* struct UPluralRules; defined in upluralrules.h
*/
/**
* Open a new UPluralRules object using the predefined plural rules for a
* given locale.
* @param locale The locale for which the rules are desired.
* @param status A pointer to a UErrorCode to receive any errors.
* @return A UPluralRules for the specified locale, or 0 if an error occurred.
* @internal/obsolete, use uplrules_open in upluralrules.h
*/
U_INTERNAL UPluralRules* U_EXPORT2
uplrule_open(const char *locale,
UErrorCode *status);
/**
* Close a UPluralRules object. Once closed it may no longer be used.
* @param plrules The UPluralRules object to close.
* @internal/obsolete, use uplrules_close in upluralrules.h
*/
U_INTERNAL void U_EXPORT2
uplrule_close(UPluralRules *plrules);
/**
* Given an int32_t number, returns the keyword of the first rule that
* applies to the number, according to the supplied UPluralRules object.
* @param plrules The UPluralRules object specifying the rules.
* @param number The number for which the rule has to be determined.
* @param keyword The keyword of the rule that applies to number.
* @param capacity The capacity of keyword.
* @param status A pointer to a UErrorCode to receive any errors.
* @return The length of keyword.
* @internal/obsolete, use uplrules_select in upluralrules.h
*/
U_INTERNAL int32_t U_EXPORT2
uplrule_select(const UPluralRules *plrules,
int32_t number,
UChar *keyword, int32_t capacity,
UErrorCode *status);
/**
* Given a double number, returns the keyword of the first rule that
* applies to the number, according to the supplied UPluralRules object.
* @param plrules The UPluralRules object specifying the rules.
* @param number The number for which the rule has to be determined.
* @param keyword The keyword of the rule that applies to number.
* @param capacity The capacity of keyword.
* @param status A pointer to a UErrorCode to receive any errors.
* @return The length of keyword.
* @internal/obsolete, use uplrules_select in upluralrules.h
*/
U_INTERNAL int32_t U_EXPORT2
uplrule_selectDouble(const UPluralRules *plrules,
double number,
UChar *keyword, int32_t capacity,
UErrorCode *status);
#endif /* #if !UCONFIG_NO_FORMATTING */
#endif
|