1 /* $NetBSD: src/include/nl_types.h,v 1.10 2001/12/06 23:04:06 wiz Exp $ */
2 /* $DragonFly: src/include/nl_types.h,v 1.4 2005/04/21 16:36:34 joerg Exp $ */
5 * Copyright (c) 1996 The NetBSD Foundation, Inc.
8 * This code is derived from software contributed to The NetBSD Foundation
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the NetBSD
22 * Foundation, Inc. and its contributors.
23 * 4. Neither the name of The NetBSD Foundation nor the names of its
24 * contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
42 #include <sys/cdefs.h>
43 #include <machine/stdint.h>
47 * MESSAGE CATALOG FILE FORMAT.
49 * The NetBSD message catalog format is similar to the format used by
50 * Svr4 systems. The differences are:
51 * * fixed byte order (big endian)
52 * * fixed data field sizes
54 * A message catalog contains four data types: a catalog header, one
55 * or more set headers, one or more message headers, and one or more
59 #define _NLS_MAGIC 0xff88ff89
65 int32_t __msg_hdr_offset
;
66 int32_t __msg_txt_offset
;
70 int32_t __setno
; /* set number: 0 < x <= NL_SETMAX */
71 int32_t __nmsgs
; /* number of messages in the set */
72 int32_t __index
; /* index of first msg_hdr in msg_hdr table */
76 int32_t __msgno
; /* msg number: 0 < x <= NL_MSGMAX */
84 #define NL_CAT_LOCALE 1
86 typedef struct __nl_cat_d
{
94 nl_catd
catopen(const char *, int);
95 char *catgets(nl_catd
, int, int, const char *);
96 int catclose(nl_catd
);
99 #endif /* _NL_TYPES_H_ */