blob: 0cd839c72a25b4ed99e35a6fee0e6721af37553c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
Data structure for international table
*/
struct InterTbl
{
unsigned dateform ; /* Date format */
char currsym[5] ; /* Currency symbol as ASCIZ string */
char thousp[2] ; /* Thousands separator as ASCIZ string */
char decsp[2] ; /* Decimal separator as ASCIZ string */
char datesp[2] ; /* Date separator as ASCIZ string */
char timesp[2] ; /* Time separator as ASCIZ string */
unsigned char bits ; /* Bit field */
unsigned char numdig ; /* Number of signifigant decimal digits */
unsigned char timeform ;/* Time format */
unsigned long casecall ;/* Case mapping call */
char datasp[2] ; /* Data list separator as ASCIZ string */
int reserv[5] ; /* RESERVED */
} ;
#define DATEFORM_USA 0
#define DATEFORM_EUROPE 1
#define DATEFORM_JAPAN 2
#define BITS_CURRENCY 0x0001
#define BITS_NUMSPC 0x0002
#define TIMEFORM_12 0
#define TIMEFORM_24 1
|