xref: /original-bsd/bin/rcp/extern.h (revision ac773626)
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.2 (Berkeley) 04/29/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