MFC: Document -f.
[dragonfly.git] / include / nl_types.h
blob6ac46069dcd614d2dea5cc16c901eeec711d4bdd
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 $ */
4 /*-
5 * Copyright (c) 1996 The NetBSD Foundation, Inc.
6 * All rights reserved.
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by J.T. Conklin.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
40 #ifndef _NL_TYPES_H_
41 #define _NL_TYPES_H_
42 #include <sys/cdefs.h>
43 #include <machine/stdint.h>
45 #ifdef _NLS_PRIVATE
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
56 * text strings.
59 #define _NLS_MAGIC 0xff88ff89
61 struct _nls_cat_hdr {
62 int32_t __magic;
63 int32_t __nsets;
64 int32_t __mem;
65 int32_t __msg_hdr_offset;
66 int32_t __msg_txt_offset;
67 } ;
69 struct _nls_set_hdr {
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 */
73 } ;
75 struct _nls_msg_hdr {
76 int32_t __msgno; /* msg number: 0 < x <= NL_MSGMAX */
77 int32_t __msglen;
78 int32_t __offset;
79 } ;
81 #endif
83 #define NL_SETD 1
84 #define NL_CAT_LOCALE 1
86 typedef struct __nl_cat_d {
87 void *__data;
88 __size_t __size;
89 } *nl_catd;
91 typedef long nl_item;
93 __BEGIN_DECLS
94 nl_catd catopen(const char *, int);
95 char *catgets(nl_catd, int, int, const char *);
96 int catclose(nl_catd);
97 __END_DECLS
99 #endif /* _NL_TYPES_H_ */