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