1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/localization_function_api/inc/stdapis/locale.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,91 @@
1.4 +/*
1.5 + * © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
1.6 + *
1.7 + * Copyright (c) 1991, 1993
1.8 + * The Regents of the University of California. All rights reserved.
1.9 + *
1.10 + * Redistribution and use in source and binary forms, with or without
1.11 + * modification, are permitted provided that the following conditions
1.12 + * are met:
1.13 + * 1. Redistributions of source code must retain the above copyright
1.14 + * notice, this list of conditions and the following disclaimer.
1.15 + * 2. Redistributions in binary form must reproduce the above copyright
1.16 + * notice, this list of conditions and the following disclaimer in the
1.17 + * documentation and/or other materials provided with the distribution.
1.18 + * 3. All advertising materials mentioning features or use of this software
1.19 + * must display the following acknowledgement:
1.20 + * This product includes software developed by the University of
1.21 + * California, Berkeley and its contributors.
1.22 + * 4. Neither the name of the University nor the names of its contributors
1.23 + * may be used to endorse or promote products derived from this software
1.24 + * without specific prior written permission.
1.25 + *
1.26 + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1.27 + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1.28 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1.29 + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
1.30 + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1.31 + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1.32 + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1.33 + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1.34 + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1.35 + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1.36 + * SUCH DAMAGE.
1.37 + *
1.38 + * @(#)locale.h 8.1 (Berkeley) 6/2/93
1.39 + * $FreeBSD: src/include/locale.h,v 1.8 2003/12/07 21:10:06 marcel Exp $
1.40 + */
1.41 +
1.42 +
1.43 +#ifndef _LOCALE_H_
1.44 +#define _LOCALE_H_
1.45 +
1.46 +#include <sys/_null.h>
1.47 +#include <sys/cdefs.h>
1.48 +#ifdef __SYMBIAN32__
1.49 +#include <_ansi.h>
1.50 +#endif
1.51 +
1.52 +struct lconv {
1.53 + char *decimal_point;
1.54 + char *thousands_sep;
1.55 + char *grouping;
1.56 + char *int_curr_symbol;
1.57 + char *currency_symbol;
1.58 + char *mon_decimal_point;
1.59 + char *mon_thousands_sep;
1.60 + char *mon_grouping;
1.61 + char *positive_sign;
1.62 + char *negative_sign;
1.63 + char int_frac_digits;
1.64 + char frac_digits;
1.65 + char p_cs_precedes;
1.66 + char p_sep_by_space;
1.67 + char n_cs_precedes;
1.68 + char n_sep_by_space;
1.69 + char p_sign_posn;
1.70 + char n_sign_posn;
1.71 + char int_p_cs_precedes;
1.72 + char int_n_cs_precedes;
1.73 + char int_p_sep_by_space;
1.74 + char int_n_sep_by_space;
1.75 + char int_p_sign_posn;
1.76 + char int_n_sign_posn;
1.77 +};
1.78 +
1.79 +#define LC_ALL 0
1.80 +#define LC_COLLATE 1
1.81 +#define LC_CTYPE 2
1.82 +#define LC_MONETARY 3
1.83 +#define LC_NUMERIC 4
1.84 +#define LC_TIME 5
1.85 +#define LC_MESSAGES 6
1.86 +
1.87 +#define _LC_LAST 7 /* marks end */
1.88 +
1.89 +__BEGIN_DECLS
1.90 +IMPORT_C struct lconv *localeconv(void);
1.91 +IMPORT_C char *setlocale(int, const char *);
1.92 +__END_DECLS
1.93 +
1.94 +#endif /* _LOCALE_H_ */