1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License, Version 1.0 only 6 * (the "License"). You may not use this file except in compliance 7 * with the License. 8 * 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 * or http://www.opensolaris.org/os/licensing. 11 * See the License for the specific language governing permissions 12 * and limitations under the License. 13 * 14 * When distributing Covered Code, include this CDDL HEADER in each 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 * If applicable, add the following below this CDDL HEADER, with the 17 * fields enclosed by brackets "[]" replaced with your own identifying 18 * information: Portions Copyright [yyyy] [name of copyright owner] 19 * 20 * CDDL HEADER END 21 */ 22 /* Copyright (c) 1988 AT&T */ 23 /* All Rights Reserved */ 24 25 #pragma ident "%Z%%M% %I% %E% SMI" 26 27 /* 28 * language infomation constants. 29 */ 30 31 #define D_T_FMT 0 /* string for formatting data and time */ 32 #define DAY_1 1 /* Name of the first day of the week */ 33 #define DAY_2 2 34 #define DAY_3 3 35 #define DAY_4 4 36 #define DAY_5 5 37 #define DAY_6 6 38 #define DAY_7 7 39 40 #define ABDAY_1 8 /* Abbreviated name of the first day of the week */ 41 #define ABDAY_2 9 42 #define ABDAY_3 10 43 #define ABDAY_4 11 44 #define ABDAY_5 12 45 #define ABDAY_6 13 46 #define ABDAY_7 14 47 48 #define MON_1 15 /* Name of the first month */ 49 #define MON_2 16 50 #define MON_3 17 51 #define MON_4 18 52 #define MON_5 19 53 #define MON_6 20 54 #define MON_7 21 55 #define MON_8 22 56 #define MON_9 23 57 #define MON_10 24 58 #define MON_11 25 59 #define MON_12 26 60 61 #define ABMON_1 27 /* Abbreviated name of the first month */ 62 #define ABMON_2 28 63 #define ABMON_3 29 64 #define ABMON_4 30 65 #define ABMON_5 31 66 #define ABMON_6 32 67 #define ABMON_7 33 68 #define ABMON_8 34 69 #define ABMON_9 35 70 #define ABMON_10 36 71 #define ABMON_11 37 72 #define ABMON_12 38 73 74 #define RADIXCHAR 39 /* Radix character */ 75 #define THOUSEP 40 /* Separator for thousands */ 76 #define YESSTR 41 /* Affirmative response for yes/no queries */ 77 #define NOSTR 42 /* Negative response for yes/no queries */ 78 #define CRNCYSTR 43 /* Currency symbol */ 79