xref: /original-bsd/bin/rcp/extern.h (revision 17b51d1b)
1 /*-
2  * Copyright (c) 1992 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)extern.h	5.1 (Berkeley) 07/19/92
8  */
9 
10 typedef struct {
11 	int cnt;
12 	char *buf;
13 } BUF;
14 
15 extern int iamremote;
16 
17 BUF	*allocbuf __P((BUF *, int, int));
18 char	*colon __P((char *));
19 void	 err __P((const char *, ...));
20 void	 lostconn __P((int));
21 void	 nospace __P((void));
22 int	 okname __P((char *));
23 int	 susystem __P((char *, int));
24 void	 verifydir __P((char *));
25