Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / tt / lib / util / tt_gettext_c.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*%%  (c) Copyright 1993, 1994 Hewlett-Packard Company                   */
24 /*%%  (c) Copyright 1993, 1994 International Business Machines Corp.     */
25 /*%%  (c) Copyright 1993, 1994 Sun Microsystems, Inc.                    */
26 /*%%  (c) Copyright 1993, 1994 Novell, Inc.                              */
27 /*%%  $XConsortium: tt_gettext_c.h /main/3 1995/10/23 10:39:13 rswiston $                                                        */
28 /*
29  *
30  * tt_gettext_c.h
31  *
32  * Copyright (c) 1990 by Sun Microsystems, Inc.
33  *
34  * Copied from SunOS 4.1.1 gettext.h
35  */
36 #if !defined(_TT_GETTEXT_C_H)
37 #define _TT_GETTEXT_C_H
38
39 /* common between installtxt and gettext() */
40 /* Since we don't have our own copy of installtxt, we just blindly hope
41  * that the format doesn't change.
42  */
43
44 #define ARMAG           "!<LC_MESSAGES>\n"
45 #define ARFMAG          "`\n"
46 #define SARMAG          15
47 #define INT             0 
48 #define STR             1
49
50 struct ar_hdr {
51         unsigned char ar_name[16];
52         unsigned char ar_date[12];
53         unsigned char ar_uid[6];
54         unsigned char ar_gid[6];
55         unsigned char ar_mode[8];
56         unsigned char ar_size[10];
57         unsigned char ar_fill;
58         unsigned char ar_sep;
59         unsigned char ar_quote;
60         unsigned char ar_fmag[2];
61 };
62
63 struct msg_header {
64         int maxno;      /* number of message tags in following 
65                          * domain structure */
66
67         int ptr;        /* relative offset from msg_header to start 
68                          * of target strings block */
69
70         short format_type;
71         char format[MAXFMTS];   /* Format string */
72
73 };
74
75 struct index {
76         int msgnumber;  /* The value of mesasge tag expressed as an integer
77 */
78         int rel_addr;   /* The relative offset to the real target string
79 */
80 };
81 #endif