xref: /original-bsd/bin/rcp/extern.h (revision 2598cae2)
1 /*-
2  * Copyright (c) 1992, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)extern.h	8.1 (Berkeley) 05/31/93
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	 lostconn __P((int));
20 void	 nospace __P((void));
21 int	 okname __P((char *));
22 void	 run_err __P((const char *, ...));
23 int	 susystem __P((char *, int));
24 void	 verifydir __P((char *));
25