00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _UCURR_H_
00011 #define _UCURR_H_
00012
00013 #include "unicode/utypes.h"
00014
00015 #if !UCONFIG_NO_FORMATTING
00016
00044 U_CAPI const UChar* U_EXPORT2
00045 ucurr_forLocale(const char* locale,
00046 UErrorCode* ec);
00047
00062 U_CAPI const UChar* U_EXPORT2
00063 ucurr_getSymbol(const UChar* currency,
00064 const char* locale,
00065 int32_t* len,
00066 UErrorCode* ec);
00067
00076 U_CAPI int32_t U_EXPORT2
00077 ucurr_getDefaultFractionDigits(const UChar* currency);
00078
00086 U_CAPI double U_EXPORT2
00087 ucurr_getRoundingIncrement(const UChar* currency);
00088
00089 #endif
00090
00091 #endif