Deleted Added
full compact
ipt.h (24583) ipt.h (26119)
1/*
1/*
2 * (C)opyright 1993,1994,1995 by Darren Reed.
2 * (C)opyright 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.
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 $
7 * $Id: ipt.h,v 2.0.2.6 1997/04/30 13:49:22 darrenr Exp $
8 */
9
8 */
9
10#ifndef __IPT_H__
11#define __IPT_H__
12
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 *, ...));
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__ */