ipt.h revision 24583
1/*
2 * (C)opyright 1993,1994,1995 by Darren Reed.
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
7 * $Id: ipt.h,v 2.0.2.4 1997/03/27 13:45:23 darrenr Exp $
8 */
9
10#include <fcntl.h>
11#ifdef	__STDC__
12#include <stdarg.h>
13#else
14#include <varargs.h>
15#endif
16
17
18struct	ipread	{
19	int	(*r_open) __P((char *));
20	int	(*r_close) __P((void));
21	int	(*r_readip) __P((char *, int, char **, int *));
22};
23
24extern	void	debug __P((char *, ...));
25extern	void	verbose __P((char *, ...));
26