1999-12-28 23:39:02 +00:00
|
|
|
|
/*
|
2001-03-21 20:44:20 +00:00
|
|
|
|
******************************************************************************
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*
|
2001-03-21 20:44:20 +00:00
|
|
|
|
* Copyright (C) 1997-2001, International Business Machines
|
1999-12-28 23:39:02 +00:00
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
|
*
|
2001-03-21 20:44:20 +00:00
|
|
|
|
******************************************************************************
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*
|
|
|
|
|
* FILE NAME : putil.h
|
|
|
|
|
*
|
|
|
|
|
* Date Name Description
|
|
|
|
|
* 05/14/98 nos Creation (content moved here from utypes.h).
|
|
|
|
|
* 06/17/99 erm Added IEEE_754
|
|
|
|
|
* 07/22/98 stephen Added IEEEremainder, max, min, trunc
|
|
|
|
|
* 08/13/98 stephen Added isNegativeInfinity, isPositiveInfinity
|
|
|
|
|
* 08/24/98 stephen Added longBitsFromDouble
|
|
|
|
|
* 03/02/99 stephen Removed openFile(). Added AS400 support.
|
|
|
|
|
* 04/15/99 stephen Converted to C
|
|
|
|
|
* 11/15/99 helena Integrated S/390 changes for IEEE support.
|
2000-01-11 23:20:26 +00:00
|
|
|
|
* 01/11/00 helena Added u_getVersion.
|
2001-03-21 20:44:20 +00:00
|
|
|
|
******************************************************************************
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef PUTIL_H
|
|
|
|
|
#define PUTIL_H
|
|
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
|
|
2000-04-06 16:45:03 +00:00
|
|
|
|
/* Define this to 1 if your platform supports IEEE 754 floating point,
|
|
|
|
|
to 0 if it does not. */
|
|
|
|
|
#ifndef IEEE_754
|
|
|
|
|
# define IEEE_754 1
|
|
|
|
|
#endif
|
1999-12-28 23:39:02 +00:00
|
|
|
|
|
2001-03-21 20:44:20 +00:00
|
|
|
|
/*==========================================================================*/
|
|
|
|
|
/* Platform utilities */
|
|
|
|
|
/*==========================================================================*/
|
1999-12-28 23:39:02 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Platform utilities isolates the platform dependencies of the
|
|
|
|
|
* libarary. For each platform which this code is ported to, these
|
2001-10-11 21:41:11 +00:00
|
|
|
|
* functions may have to be re-implemented.
|
|
|
|
|
*/
|
1999-12-28 23:39:02 +00:00
|
|
|
|
|
2002-12-10 22:46:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to determine if a double is Not a Number (NaN).
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI UBool U_EXPORT2 uprv_isNaN(double d);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to determine if a double has an infinite value.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI UBool U_EXPORT2 uprv_isInfinite(double d);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to determine if a double has a positive infinite value.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI UBool U_EXPORT2 uprv_isPositiveInfinity(double d);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to determine if a double has a negative infinite value.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI UBool U_EXPORT2 uprv_isNegativeInfinity(double d);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility that returns a Not a Number (NaN) value.
|
|
|
|
|
* @internal
|
2000-03-22 18:31:40 +00:00
|
|
|
|
*/
|
2001-10-11 21:41:11 +00:00
|
|
|
|
U_CAPI double U_EXPORT2 uprv_getNaN(void);
|
2002-12-10 22:46:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* Floating point utility that returns an infinite value.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
2001-10-11 21:41:11 +00:00
|
|
|
|
U_CAPI double U_EXPORT2 uprv_getInfinity(void);
|
1999-12-28 23:39:02 +00:00
|
|
|
|
|
2002-12-10 22:46:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to truncate a double.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
2001-10-11 21:41:11 +00:00
|
|
|
|
U_CAPI double U_EXPORT2 uprv_trunc(double d);
|
2002-12-10 22:46:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to calculate the floor of a double.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI double U_EXPORT2 uprv_floor(double d);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to calculate the ceiling of a double.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI double U_EXPORT2 uprv_ceil(double d);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to calculate the absolute value of a double.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI double U_EXPORT2 uprv_fabs(double d);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to calculate the fractional and integer parts of a double.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI double U_EXPORT2 uprv_modf(double d, double* pinteger);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to calculate the remainder of a double divided by another double.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI double U_EXPORT2 uprv_fmod(double d, double y);
|
|
|
|
|
/**
|
2003-04-24 16:00:46 +00:00
|
|
|
|
* Floating point utility to calculate d to the power of exponent (d^exponent).
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
|
|
|
|
*/
|
2003-04-24 16:00:46 +00:00
|
|
|
|
U_CAPI double U_EXPORT2 uprv_pow(double d, double exponent);
|
2002-12-10 22:46:57 +00:00
|
|
|
|
/**
|
2003-04-24 16:00:46 +00:00
|
|
|
|
* Floating point utility to calculate 10 to the power of exponent (10^exponent).
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
|
|
|
|
*/
|
2003-04-24 16:00:46 +00:00
|
|
|
|
U_CAPI double U_EXPORT2 uprv_pow10(int32_t exponent);
|
2002-12-10 22:46:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to calculate the maximum value of two doubles.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI double U_EXPORT2 uprv_fmax(double d, double y);
|
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to calculate the minimum value of two doubles.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI double U_EXPORT2 uprv_fmin(double d, double y);
|
|
|
|
|
/**
|
|
|
|
|
* Private utility to calculate the maximum value of two integers.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI int32_t U_EXPORT2 uprv_max(int32_t d, int32_t y);
|
|
|
|
|
/**
|
|
|
|
|
* Private utility to calculate the minimum value of two integers.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
U_CAPI int32_t U_EXPORT2 uprv_min(int32_t d, int32_t y);
|
2001-08-16 01:01:57 +00:00
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
|
#if U_IS_BIG_ENDIAN
|
|
|
|
|
# define uprv_isNegative(number) (*((signed char *)&(number))<0)
|
|
|
|
|
#else
|
|
|
|
|
# define uprv_isNegative(number) (*((signed char *)&(number)+sizeof(number)-1)<0)
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-10-11 21:41:11 +00:00
|
|
|
|
/**
|
|
|
|
|
* Return the largest positive number that can be represented by an integer
|
|
|
|
|
* type of arbitrary bit length.
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
2001-10-11 21:41:11 +00:00
|
|
|
|
*/
|
|
|
|
|
U_CAPI double U_EXPORT2 uprv_maxMantissa(void);
|
|
|
|
|
|
|
|
|
|
/**
|
1999-12-28 23:39:02 +00:00
|
|
|
|
* Return the floor of the log base 10 of a given double.
|
|
|
|
|
* This method compensates for inaccuracies which arise naturally when
|
|
|
|
|
* computing logs, and always gives the correct value. The parameter
|
|
|
|
|
* must be positive and finite.
|
|
|
|
|
* (Thanks to Alan Liu for supplying this function.)
|
|
|
|
|
*
|
|
|
|
|
* @param d the double value to apply the common log function for.
|
|
|
|
|
* @return the log of value d.
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*/
|
|
|
|
|
U_CAPI int16_t U_EXPORT2 uprv_log10(double d);
|
|
|
|
|
|
2002-12-10 22:46:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* Floating point utility to calculate the logarithm of a double.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
2001-10-11 21:41:11 +00:00
|
|
|
|
U_CAPI double U_EXPORT2 uprv_log(double d);
|
|
|
|
|
|
2002-12-12 00:27:50 +00:00
|
|
|
|
/**
|
|
|
|
|
* Does common notion of rounding e.g. uprv_floor(x + 0.5);
|
|
|
|
|
* @param x the double number
|
2002-07-03 12:05:56 +00:00
|
|
|
|
* @return the rounded double
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
2002-07-03 12:05:56 +00:00
|
|
|
|
*/
|
2001-10-11 21:41:11 +00:00
|
|
|
|
U_CAPI double U_EXPORT2 uprv_round(double x);
|
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* Returns the number of digits after the decimal point in a double number x.
|
|
|
|
|
*
|
|
|
|
|
* @param x the double number
|
2002-07-03 12:05:56 +00:00
|
|
|
|
* @return the number of digits after the decimal point in a double number x.
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*/
|
|
|
|
|
U_CAPI int32_t U_EXPORT2 uprv_digitsAfterDecimal(double x);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Time zone utilities
|
|
|
|
|
*
|
|
|
|
|
* Wrappers for C runtime library functions relating to timezones.
|
|
|
|
|
* The t_tzset() function (similar to tzset) uses the current setting
|
|
|
|
|
* of the environment variable TZ to assign values to three global
|
|
|
|
|
* variables: daylight, timezone, and tzname. These variables have the
|
2001-11-09 18:17:40 +00:00
|
|
|
|
* following meanings, and are declared in <time.h>.
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*
|
|
|
|
|
* daylight Nonzero if daylight-saving-time zone (DST) is specified
|
|
|
|
|
* in TZ; otherwise, 0. Default value is 1.
|
|
|
|
|
* timezone Difference in seconds between coordinated universal
|
|
|
|
|
* time and local time. E.g., -28,800 for PST (GMT-8hrs)
|
|
|
|
|
* tzname(0) Three-letter time-zone name derived from TZ environment
|
|
|
|
|
* variable. E.g., "PST".
|
|
|
|
|
* tzname(1) Three-letter DST zone name derived from TZ environment
|
|
|
|
|
* variable. E.g., "PDT". If DST zone is omitted from TZ,
|
|
|
|
|
* tzname(1) is an empty string.
|
|
|
|
|
*
|
|
|
|
|
* Notes: For example, to set the TZ environment variable to correspond
|
|
|
|
|
* to the current time zone in Germany, you can use one of the
|
|
|
|
|
* following statements:
|
|
|
|
|
*
|
|
|
|
|
* set TZ=GST1GDT
|
|
|
|
|
* set TZ=GST+1GDT
|
|
|
|
|
*
|
|
|
|
|
* If the TZ value is not set, t_tzset() attempts to use the time zone
|
|
|
|
|
* information specified by the operating system. Under Windows NT
|
|
|
|
|
* and Windows 95, this information is specified in the Control Panel<EFBFBD>s
|
|
|
|
|
* Date/Time application.
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*/
|
|
|
|
|
U_CAPI void U_EXPORT2 uprv_tzset(void);
|
2001-11-09 18:17:40 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Difference in seconds between coordinated universal
|
|
|
|
|
* time and local time. E.g., -28,800 for PST (GMT-8hrs)
|
2002-07-03 12:05:56 +00:00
|
|
|
|
* @return the difference in seconds between coordinated universal time and local time.
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
2001-11-09 18:17:40 +00:00
|
|
|
|
*/
|
1999-12-28 23:39:02 +00:00
|
|
|
|
U_CAPI int32_t U_EXPORT2 uprv_timezone(void);
|
2001-11-09 18:17:40 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* tzname(0) Three-letter time-zone name derived from TZ environment
|
|
|
|
|
* variable. E.g., "PST".
|
|
|
|
|
* tzname(1) Three-letter DST zone name derived from TZ environment
|
|
|
|
|
* variable. E.g., "PDT". If DST zone is omitted from TZ,
|
|
|
|
|
* tzname(1) is an empty string.
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
2001-11-09 18:17:40 +00:00
|
|
|
|
*/
|
2000-04-14 05:22:29 +00:00
|
|
|
|
U_CAPI char* U_EXPORT2 uprv_tzname(int n);
|
1999-12-28 23:39:02 +00:00
|
|
|
|
|
2000-03-22 18:31:40 +00:00
|
|
|
|
/**
|
2002-07-03 12:05:56 +00:00
|
|
|
|
* Get UTC (GMT) time measured in seconds since 0:00 on 1/1/70.
|
|
|
|
|
* @return the UTC time measured in seconds
|
2002-12-04 23:39:56 +00:00
|
|
|
|
* @stable ICU 2.0
|
2002-12-10 22:46:57 +00:00
|
|
|
|
* @internal
|
2000-03-22 18:31:40 +00:00
|
|
|
|
*/
|
1999-12-28 23:39:02 +00:00
|
|
|
|
U_CAPI int32_t U_EXPORT2 uprv_getUTCtime(void);
|
|
|
|
|
|
2000-03-22 18:31:40 +00:00
|
|
|
|
/**
|
2001-08-17 21:34:07 +00:00
|
|
|
|
* Return the ICU data directory.
|
|
|
|
|
* The data directory is where common format ICU data files (.dat files)
|
|
|
|
|
* are loaded from. Note that normal use of the built-in ICU
|
|
|
|
|
* facilities does not require loading of an external data file;
|
|
|
|
|
* unless you are adding custom data to ICU, the data directory
|
|
|
|
|
* does not need to be set.
|
|
|
|
|
*
|
|
|
|
|
* The data directory is determined as follows:
|
|
|
|
|
* If u_setDataDirectory() has been called, that is it, otherwise
|
|
|
|
|
* if the ICU_DATA environment variable is set, use that, otherwise
|
2003-05-29 23:13:24 +00:00
|
|
|
|
* If a data directory was specifed at ICU build time
|
|
|
|
|
* (#define ICU_DATA_DIR "path"), use that,
|
2001-08-17 21:34:07 +00:00
|
|
|
|
* otherwise no data directory is available.
|
|
|
|
|
*
|
2001-11-09 18:17:40 +00:00
|
|
|
|
* @return the data directory, or an empty string ("") if no data directory has
|
2001-08-17 21:34:07 +00:00
|
|
|
|
* been specified.
|
|
|
|
|
*
|
2002-12-04 23:39:56 +00:00
|
|
|
|
* @stable ICU 2.0
|
2000-03-22 18:31:40 +00:00
|
|
|
|
*/
|
1999-12-28 23:39:02 +00:00
|
|
|
|
U_CAPI const char* U_EXPORT2 u_getDataDirectory(void);
|
|
|
|
|
|
2000-03-22 18:31:40 +00:00
|
|
|
|
/**
|
2001-08-17 21:34:07 +00:00
|
|
|
|
* Set the ICU data directory.
|
|
|
|
|
* The data directory is where common format ICU data files (.dat files)
|
|
|
|
|
* are loaded from. Note that normal use of the built-in ICU
|
|
|
|
|
* facilities does not require loading of an external data file;
|
|
|
|
|
* unless you are adding custom data to ICU, the data directory
|
|
|
|
|
* does not need to be set.
|
|
|
|
|
*
|
|
|
|
|
* This function should be called at most once in a process, before the
|
2003-05-29 23:13:24 +00:00
|
|
|
|
* first ICU operation (e.g., u_init()) that will require the loading of an
|
|
|
|
|
* ICU data file.
|
|
|
|
|
* This function is not thread-safe. Use it before calling ICU APIs from
|
|
|
|
|
* multiple threads.
|
|
|
|
|
*
|
|
|
|
|
* @param directory The directory to be set.
|
|
|
|
|
*
|
|
|
|
|
* @see u_init
|
2002-12-04 23:39:56 +00:00
|
|
|
|
* @stable ICU 2.0
|
2000-03-22 18:31:40 +00:00
|
|
|
|
*/
|
1999-12-28 23:39:02 +00:00
|
|
|
|
U_CAPI void U_EXPORT2 u_setDataDirectory(const char *directory);
|
|
|
|
|
|
2000-03-22 18:31:40 +00:00
|
|
|
|
/**
|
2002-12-10 23:15:21 +00:00
|
|
|
|
* Please use ucnv_getDefaultName() instead.
|
2002-10-24 20:52:54 +00:00
|
|
|
|
* Return the default codepage for this platform and locale.
|
|
|
|
|
* This function can call setlocale() on Unix platforms. Please read the
|
|
|
|
|
* platform documentation on setlocale() before calling this function.
|
2002-07-03 12:05:56 +00:00
|
|
|
|
* @return the default codepage for this platform
|
2002-12-10 23:15:21 +00:00
|
|
|
|
* @internal
|
2000-03-22 18:31:40 +00:00
|
|
|
|
*/
|
1999-12-28 23:39:02 +00:00
|
|
|
|
U_CAPI const char* U_EXPORT2 uprv_getDefaultCodepage(void);
|
|
|
|
|
|
2000-03-22 18:31:40 +00:00
|
|
|
|
/**
|
2002-12-10 23:15:21 +00:00
|
|
|
|
* Please use uloc_getDefault() instead.
|
2000-03-22 18:31:40 +00:00
|
|
|
|
* Return the default locale ID string by querying ths system, or
|
|
|
|
|
* zero if one cannot be found.
|
2002-10-24 20:52:54 +00:00
|
|
|
|
* This function can call setlocale() on Unix platforms. Please read the
|
|
|
|
|
* platform documentation on setlocale() before calling this function.
|
2002-07-03 12:05:56 +00:00
|
|
|
|
* @return the default locale ID string
|
2002-12-10 23:15:21 +00:00
|
|
|
|
* @internal
|
2000-03-22 18:31:40 +00:00
|
|
|
|
*/
|
1999-12-28 23:39:02 +00:00
|
|
|
|
U_CAPI const char* U_EXPORT2 uprv_getDefaultLocaleID(void);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Filesystem file and path separator characters.
|
|
|
|
|
* Example: '/' and ':' on Unix, '\\' and ';' on Windows.
|
2002-12-04 23:39:56 +00:00
|
|
|
|
* @stable ICU 2.0
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*/
|
|
|
|
|
#ifdef XP_MAC
|
|
|
|
|
# define U_FILE_SEP_CHAR ':'
|
|
|
|
|
# define U_PATH_SEP_CHAR ';'
|
|
|
|
|
# define U_FILE_SEP_STRING ":"
|
|
|
|
|
# define U_PATH_SEP_STRING ";"
|
|
|
|
|
#elif defined(WIN32) || defined(OS2)
|
|
|
|
|
# define U_FILE_SEP_CHAR '\\'
|
|
|
|
|
# define U_PATH_SEP_CHAR ';'
|
|
|
|
|
# define U_FILE_SEP_STRING "\\"
|
|
|
|
|
# define U_PATH_SEP_STRING ";"
|
|
|
|
|
#else
|
|
|
|
|
# define U_FILE_SEP_CHAR '/'
|
|
|
|
|
# define U_PATH_SEP_CHAR ':'
|
|
|
|
|
# define U_FILE_SEP_STRING "/"
|
|
|
|
|
# define U_PATH_SEP_STRING ":"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Convert char characters to UChar characters.
|
|
|
|
|
* This utility function is useful only for "invariant characters"
|
|
|
|
|
* that are encoded in the platform default encoding.
|
|
|
|
|
* They are a small, constant subset of the encoding and include
|
|
|
|
|
* just the latin letters, digits, and some punctuation.
|
|
|
|
|
* For details, see utypes.h .
|
|
|
|
|
*
|
|
|
|
|
* @param cs Input string, points to <code>length</code>
|
|
|
|
|
* character bytes from a subset of the platform encoding.
|
|
|
|
|
* @param us Output string, points to memory for <code>length</code>
|
|
|
|
|
* Unicode characters.
|
|
|
|
|
* @param length The number of characters to convert; this may
|
|
|
|
|
* include the terminating <code>NUL</code>.
|
2002-12-04 23:39:56 +00:00
|
|
|
|
* @stable ICU 2.0
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*/
|
|
|
|
|
U_CAPI void U_EXPORT2
|
2002-03-12 01:32:42 +00:00
|
|
|
|
u_charsToUChars(const char *cs, UChar *us, int32_t length);
|
1999-12-28 23:39:02 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Convert UChar characters to char characters.
|
|
|
|
|
* This utility function is useful only for "invariant characters"
|
|
|
|
|
* that can be encoded in the platform default encoding.
|
|
|
|
|
* They are a small, constant subset of the encoding and include
|
|
|
|
|
* just the latin letters, digits, and some punctuation.
|
|
|
|
|
* For details, see utypes.h .
|
|
|
|
|
*
|
|
|
|
|
* @param us Input string, points to <code>length</code>
|
|
|
|
|
* Unicode characters that can be encoded with the
|
|
|
|
|
* codepage-invariant subset of the platform encoding.
|
|
|
|
|
* @param cs Output string, points to memory for <code>length</code>
|
|
|
|
|
* character bytes.
|
|
|
|
|
* @param length The number of characters to convert; this may
|
|
|
|
|
* include the terminating <code>NUL</code>.
|
2002-12-04 23:39:56 +00:00
|
|
|
|
* @stable ICU 2.0
|
1999-12-28 23:39:02 +00:00
|
|
|
|
*/
|
|
|
|
|
U_CAPI void U_EXPORT2
|
2002-03-12 01:32:42 +00:00
|
|
|
|
u_UCharsToChars(const UChar *us, char *cs, int32_t length);
|
1999-12-28 23:39:02 +00:00
|
|
|
|
|
2002-12-12 00:27:50 +00:00
|
|
|
|
/**
|
|
|
|
|
* \def U_UPPER_ORDINAL
|
|
|
|
|
* Get the ordinal number of an uppercase invariant character
|
|
|
|
|
* @stable ICU 2.4
|
|
|
|
|
*/
|
2001-03-06 02:39:47 +00:00
|
|
|
|
#if U_CHARSET_FAMILY==U_ASCII_FAMILY
|
|
|
|
|
# define U_UPPER_ORDINAL(x) ((x)-'A')
|
|
|
|
|
#elif U_CHARSET_FAMILY==U_EBCDIC_FAMILY
|
|
|
|
|
# define U_UPPER_ORDINAL(x) (((x) < 'J') ? ((x)-'A') : \
|
2001-03-06 17:51:08 +00:00
|
|
|
|
(((x) < 'S') ? ((x)-'J'+9) : \
|
|
|
|
|
((x)-'S'+18)))
|
2001-03-06 02:39:47 +00:00
|
|
|
|
#else
|
|
|
|
|
# error Unknown charset family!
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-03-22 23:47:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* Maximum value of a (void*) - use to indicate the limit of an 'infinite' buffer.
|
|
|
|
|
* In fact, buffer sizes must not exceed 2GB so that the difference between
|
|
|
|
|
* the buffer limit and the buffer start can be expressed in an int32_t.
|
|
|
|
|
*
|
|
|
|
|
* The definition of U_MAX_PTR must fulfill the following conditions:
|
|
|
|
|
* - return the largest possible pointer greater than base
|
|
|
|
|
* - return a valid pointer according to the machine architecture (AS/400, 64-bit, etc.)
|
|
|
|
|
* - avoid wrapping around at high addresses
|
|
|
|
|
* - make sure that the returned pointer is not farther from base than 0x7fffffff
|
|
|
|
|
*
|
|
|
|
|
* @param base The beginning of a buffer to find the maximum offset from
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
#ifndef U_MAX_PTR
|
2001-03-23 18:16:24 +00:00
|
|
|
|
# ifdef OS390
|
2001-04-18 01:28:10 +00:00
|
|
|
|
# define U_MAX_PTR(base) ((void *)0x7fffffff)
|
2001-03-23 18:16:24 +00:00
|
|
|
|
# elif defined(OS400)
|
|
|
|
|
/*
|
|
|
|
|
* With the provided macro we should never be out of range of a given segment
|
|
|
|
|
* (a traditional/typical segment that is). Our segments have 5 bytes for the id
|
|
|
|
|
* and 3 bytes for the offset. The key is that the casting takes care of only
|
|
|
|
|
* retrieving the offset portion minus x1000. Hence, the smallest offset seen in
|
|
|
|
|
* a program is x001000 and when casted to an int would be 0. That's why we can
|
|
|
|
|
* only add 0xffefff. Otherwise, we would exceed the segment.
|
|
|
|
|
*
|
|
|
|
|
* Currently, 16MB is the current addressing limitation on as/400. This macro
|
|
|
|
|
* may eventually be changed to use 2GB addressability for the newer version of
|
|
|
|
|
* as/400 machines.
|
|
|
|
|
*/
|
|
|
|
|
# define U_MAX_PTR(base) ((void *)(((char *)base)-((int32_t)(base))+((int32_t)0xffefff)))
|
|
|
|
|
# else
|
|
|
|
|
# define U_MAX_PTR(base) ((void *)(((char *)(base)+0x7fffffff) > (char *)(base) ? ((char *)(base)+0x7fffffff) : (char *)-1))
|
|
|
|
|
# endif
|
2001-03-22 23:47:40 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
|
#endif
|