1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/localization_function_api/inc/stdapis/langinfo.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,127 @@
1.4 +/*-
1.5 + * © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
1.6 + *
1.7 + * Copyright (c) 2001 Alexey Zelkin <phantom@FreeBSD.org>
1.8 + * 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 + *
1.19 + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1.20 + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1.21 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1.22 + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1.23 + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1.24 + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1.25 + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1.26 + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1.27 + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1.28 + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1.29 + * SUCH DAMAGE.
1.30 + *
1.31 + * $FreeBSD: src/include/langinfo.h,v 1.6 2002/09/18 05:54:25 mike Exp $
1.32 + */
1.33 +
1.34 +
1.35 +#ifndef _LANGINFO_H_
1.36 +#define _LANGINFO_H_
1.37 +
1.38 +#include <sys/cdefs.h>
1.39 +#include <sys/_types.h>
1.40 +#ifdef __SYMBIAN32__
1.41 +#include <_ansi.h>
1.42 +#endif
1.43 +
1.44 +#ifndef _NL_ITEM_DECLARED
1.45 +typedef __nl_item nl_item;
1.46 +#define _NL_ITEM_DECLARED
1.47 +#endif
1.48 +
1.49 +#define CODESET 0 /* codeset name */
1.50 +#define D_T_FMT 1 /* string for formatting date and time */
1.51 +#define D_FMT 2 /* date format string */
1.52 +#define T_FMT 3 /* time format string */
1.53 +#define T_FMT_AMPM 4 /* a.m. or p.m. time formatting string */
1.54 +#define AM_STR 5 /* Ante Meridian affix */
1.55 +#define PM_STR 6 /* Post Meridian affix */
1.56 +
1.57 +/* week day names */
1.58 +#define DAY_1 7
1.59 +#define DAY_2 8
1.60 +#define DAY_3 9
1.61 +#define DAY_4 10
1.62 +#define DAY_5 11
1.63 +#define DAY_6 12
1.64 +#define DAY_7 13
1.65 +
1.66 +/* abbreviated week day names */
1.67 +#define ABDAY_1 14
1.68 +#define ABDAY_2 15
1.69 +#define ABDAY_3 16
1.70 +#define ABDAY_4 17
1.71 +#define ABDAY_5 18
1.72 +#define ABDAY_6 19
1.73 +#define ABDAY_7 20
1.74 +
1.75 +/* month names */
1.76 +#define MON_1 21
1.77 +#define MON_2 22
1.78 +#define MON_3 23
1.79 +#define MON_4 24
1.80 +#define MON_5 25
1.81 +#define MON_6 26
1.82 +#define MON_7 27
1.83 +#define MON_8 28
1.84 +#define MON_9 29
1.85 +#define MON_10 30
1.86 +#define MON_11 31
1.87 +#define MON_12 32
1.88 +
1.89 +/* abbreviated month names */
1.90 +#define ABMON_1 33
1.91 +#define ABMON_2 34
1.92 +#define ABMON_3 35
1.93 +#define ABMON_4 36
1.94 +#define ABMON_5 37
1.95 +#define ABMON_6 38
1.96 +#define ABMON_7 39
1.97 +#define ABMON_8 40
1.98 +#define ABMON_9 41
1.99 +#define ABMON_10 42
1.100 +#define ABMON_11 43
1.101 +#define ABMON_12 44
1.102 +
1.103 +#define ERA 45 /* era description segments */
1.104 +#define ERA_D_FMT 46 /* era date format string */
1.105 +#define ERA_D_T_FMT 47 /* era date and time format string */
1.106 +#define ERA_T_FMT 48 /* era time format string */
1.107 +#define ALT_DIGITS 49 /* alternative symbols for digits */
1.108 +
1.109 +#define RADIXCHAR 50 /* radix char */
1.110 +#define THOUSEP 51 /* separator for thousands */
1.111 +
1.112 +#define YESEXPR 52 /* affirmative response expression */
1.113 +#define NOEXPR 53 /* negative response expression */
1.114 +
1.115 +#if __BSD_VISIBLE || __XSI_VISIBLE <= 500
1.116 +#define YESSTR 54 /* affirmative response for yes/no queries */
1.117 +#define NOSTR 55 /* negative response for yes/no queries */
1.118 +#endif
1.119 +
1.120 +#define CRNCYSTR 56 /* currency symbol */
1.121 +
1.122 +#if __BSD_VISIBLE
1.123 +#define D_MD_ORDER 57 /* month/day order (local extension) */
1.124 +#endif
1.125 +
1.126 +__BEGIN_DECLS
1.127 +IMPORT_C char *nl_langinfo(nl_item);
1.128 +__END_DECLS
1.129 +
1.130 +#endif /* !_LANGINFO_H_ */