sl@0: /*- sl@0: * © Portions copyright (c) 2006 Nokia Corporation. All rights reserved. sl@0: * sl@0: * Copyright (c) 2001 Alexey Zelkin sl@0: * All rights reserved. sl@0: * sl@0: * Redistribution and use in source and binary forms, with or without sl@0: * modification, are permitted provided that the following conditions sl@0: * are met: sl@0: * 1. Redistributions of source code must retain the above copyright sl@0: * notice, this list of conditions and the following disclaimer. sl@0: * 2. Redistributions in binary form must reproduce the above copyright sl@0: * notice, this list of conditions and the following disclaimer in the sl@0: * documentation and/or other materials provided with the distribution. sl@0: * sl@0: * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND sl@0: * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE sl@0: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE sl@0: * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE sl@0: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL sl@0: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS sl@0: * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) sl@0: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT sl@0: * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY sl@0: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF sl@0: * SUCH DAMAGE. sl@0: * sl@0: * $FreeBSD: src/include/langinfo.h,v 1.6 2002/09/18 05:54:25 mike Exp $ sl@0: */ sl@0: sl@0: sl@0: #ifndef _LANGINFO_H_ sl@0: #define _LANGINFO_H_ sl@0: sl@0: #include sl@0: #include sl@0: #ifdef __SYMBIAN32__ sl@0: #include <_ansi.h> sl@0: #endif sl@0: sl@0: #ifndef _NL_ITEM_DECLARED sl@0: typedef __nl_item nl_item; sl@0: #define _NL_ITEM_DECLARED sl@0: #endif sl@0: sl@0: #define CODESET 0 /* codeset name */ sl@0: #define D_T_FMT 1 /* string for formatting date and time */ sl@0: #define D_FMT 2 /* date format string */ sl@0: #define T_FMT 3 /* time format string */ sl@0: #define T_FMT_AMPM 4 /* a.m. or p.m. time formatting string */ sl@0: #define AM_STR 5 /* Ante Meridian affix */ sl@0: #define PM_STR 6 /* Post Meridian affix */ sl@0: sl@0: /* week day names */ sl@0: #define DAY_1 7 sl@0: #define DAY_2 8 sl@0: #define DAY_3 9 sl@0: #define DAY_4 10 sl@0: #define DAY_5 11 sl@0: #define DAY_6 12 sl@0: #define DAY_7 13 sl@0: sl@0: /* abbreviated week day names */ sl@0: #define ABDAY_1 14 sl@0: #define ABDAY_2 15 sl@0: #define ABDAY_3 16 sl@0: #define ABDAY_4 17 sl@0: #define ABDAY_5 18 sl@0: #define ABDAY_6 19 sl@0: #define ABDAY_7 20 sl@0: sl@0: /* month names */ sl@0: #define MON_1 21 sl@0: #define MON_2 22 sl@0: #define MON_3 23 sl@0: #define MON_4 24 sl@0: #define MON_5 25 sl@0: #define MON_6 26 sl@0: #define MON_7 27 sl@0: #define MON_8 28 sl@0: #define MON_9 29 sl@0: #define MON_10 30 sl@0: #define MON_11 31 sl@0: #define MON_12 32 sl@0: sl@0: /* abbreviated month names */ sl@0: #define ABMON_1 33 sl@0: #define ABMON_2 34 sl@0: #define ABMON_3 35 sl@0: #define ABMON_4 36 sl@0: #define ABMON_5 37 sl@0: #define ABMON_6 38 sl@0: #define ABMON_7 39 sl@0: #define ABMON_8 40 sl@0: #define ABMON_9 41 sl@0: #define ABMON_10 42 sl@0: #define ABMON_11 43 sl@0: #define ABMON_12 44 sl@0: sl@0: #define ERA 45 /* era description segments */ sl@0: #define ERA_D_FMT 46 /* era date format string */ sl@0: #define ERA_D_T_FMT 47 /* era date and time format string */ sl@0: #define ERA_T_FMT 48 /* era time format string */ sl@0: #define ALT_DIGITS 49 /* alternative symbols for digits */ sl@0: sl@0: #define RADIXCHAR 50 /* radix char */ sl@0: #define THOUSEP 51 /* separator for thousands */ sl@0: sl@0: #define YESEXPR 52 /* affirmative response expression */ sl@0: #define NOEXPR 53 /* negative response expression */ sl@0: sl@0: #if __BSD_VISIBLE || __XSI_VISIBLE <= 500 sl@0: #define YESSTR 54 /* affirmative response for yes/no queries */ sl@0: #define NOSTR 55 /* negative response for yes/no queries */ sl@0: #endif sl@0: sl@0: #define CRNCYSTR 56 /* currency symbol */ sl@0: sl@0: #if __BSD_VISIBLE sl@0: #define D_MD_ORDER 57 /* month/day order (local extension) */ sl@0: #endif sl@0: sl@0: __BEGIN_DECLS sl@0: IMPORT_C char *nl_langinfo(nl_item); sl@0: __END_DECLS sl@0: sl@0: #endif /* !_LANGINFO_H_ */