ipt.h revision 31183
1/*
2 * Copyright (C) 1993-1997 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.7 1997/09/28 07:12:00 darrenr Exp $
8 */
9
10#ifndef	__IPT_H__
11#define	__IPT_H__
12
13#include <fcntl.h>
14#ifdef	__STDC__
15#include <stdarg.h>
16#else
17#include <varargs.h>
18#endif
19
20
21struct	ipread	{
22	int	(*r_open) __P((char *));
23	int	(*r_close) __P((void));
24	int	(*r_readip) __P((char *, int, char **, int *));
25};
26
27extern	void	debug __P((char *, ...));
28extern	void	verbose __P((char *, ...));
29
30#endif /* __IPT_H__ */
31