nl_types.h revision 8858
1301169Slidl/*	$Id: nl_types.h,v 1.1 1995/03/30 12:47:56 jkh Exp $ */
2301169Slidl
3301169Slidl/***********************************************************
4301169SlidlCopyright 1990, by Alfalfa Software Incorporated, Cambridge, Massachusetts.
5301169Slidl
6301169Slidl                        All Rights Reserved
7301169Slidl
8301169SlidlPermission to use, copy, modify, and distribute this software and its
9301169Slidldocumentation for any purpose and without fee is hereby granted,
10301169Slidlprovided that the above copyright notice appear in all copies and that
11both that copyright notice and this permission notice appear in
12supporting documentation, and that Alfalfa's name not be used in
13advertising or publicity pertaining to distribution of the software
14without specific, written prior permission.
15
16ALPHALPHA DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
17ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
18ALPHALPHA BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
19ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
20WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
21ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
22SOFTWARE.
23
24If you make any modifications, bugfixes or other changes to this software
25we'd appreciate it if you could send a copy to us so we can keep things
26up-to-date.  Many thanks.
27				Kee Hinckley
28				Alfalfa Software, Inc.
29				267 Allston St., #3
30				Cambridge, MA 02139  USA
31				nazgul@alfalfa.com
32
33******************************************************************/
34
35#ifndef _NL_TYPES_H_
36#define _NL_TYPES_H_
37#include <sys/cdefs.h>
38
39#define	NL_SETD	0
40
41typedef	long	nl_catd;
42typedef long	nl_item;
43
44extern nl_catd 	catopen __P((__const char *, int));
45extern char    *catgets __P((nl_catd, int, int, char *));
46extern int	catclose __P((nl_catd));
47
48#endif	/* _NL_TYPES_H_ */
49