1/*	$NetBSD: nl_types.h,v 1.9 2000/10/03 19:53:32 sommerfeld Exp $	*/
2
3/*-
4 * SPDX-License-Identifier: BSD-2-Clause-NetBSD
5 *
6 * Copyright (c) 1996 The NetBSD Foundation, Inc.
7 * All rights reserved.
8 *
9 * This code is derived from software contributed to The NetBSD Foundation
10 * by J.T. Conklin.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 *    notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 *    notice, this list of conditions and the following disclaimer in the
19 *    documentation and/or other materials provided with the distribution.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
23 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 * $FreeBSD$
34 */
35
36#ifndef _NL_TYPES_H_
37#define _NL_TYPES_H_
38
39#include <sys/cdefs.h>
40#include <sys/types.h>
41
42#ifdef _NLS_PRIVATE
43/*
44 * MESSAGE CATALOG FILE FORMAT.
45 *
46 * The NetBSD/FreeBSD message catalog format is similar to the format used by
47 * Svr4 systems.  The differences are:
48 *   * fixed byte order (big endian)
49 *   * fixed data field sizes
50 *
51 * A message catalog contains four data types: a catalog header, one
52 * or more set headers, one or more message headers, and one or more
53 * text strings.
54 */
55
56#define _NLS_MAGIC	0xff88ff89
57
58struct _nls_cat_hdr {
59	int32_t __magic;
60	int32_t __nsets;
61	int32_t __mem;
62	int32_t __msg_hdr_offset;
63	int32_t __msg_txt_offset;
64} ;
65
66struct _nls_set_hdr {
67	int32_t __setno;	/* set number: 0 < x <= NL_SETMAX */
68	int32_t __nmsgs;	/* number of messages in the set  */
69	int32_t __index;	/* index of first msg_hdr in msg_hdr table */
70} ;
71
72struct _nls_msg_hdr {
73	int32_t __msgno;	/* msg number: 0 < x <= NL_MSGMAX */
74	int32_t __msglen;
75	int32_t __offset;
76} ;
77
78#endif	/* _NLS_PRIVATE */
79
80#define	NL_SETD		0
81#define	NL_CAT_LOCALE	1
82
83typedef struct __nl_cat_d {
84	void	*__data;
85	int	__size;
86} *nl_catd;
87
88#ifndef _NL_ITEM_DECLARED
89typedef	__nl_item	nl_item;
90#define	_NL_ITEM_DECLARED
91#endif
92
93__BEGIN_DECLS
94nl_catd  catopen(const char *, int);
95char    *catgets(nl_catd, int, int, const char *) __format_arg(4);
96int	 catclose(nl_catd);
97__END_DECLS
98
99#endif	/* _NL_TYPES_H_ */
100