xref: /original-bsd/libexec/ftpd/extern.h (revision c3e32dec)
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) 06/04/93
8  */
9 
10 void	  blkfree __P((char **));
11 char	**copyblk __P((char **));
12 void	  cwd __P((char *));
13 void	  delete __P((char *));
14 void	  dologout __P((int));
15 void	  fatal __P((char *));
16 int	  ftpd_pclose __P((FILE *));
17 FILE	 *ftpd_popen __P((char *, char *));
18 char	**ftpglob __P((char *));
19 char	  *getline __P((char *, int, FILE *));
20 void	  logwtmp __P((char *, char *, char *));
21 void	  lreply __P((int, const char *, ...));
22 void	  makedir __P((char *));
23 void	  nack __P((char *));
24 void	  pass __P((char *));
25 void	  passive __P((void));
26 void	  perror_reply __P((int, char *));
27 void	  pwd __P((void));
28 void	  removedir __P((char *));
29 void	  renamecmd __P((char *, char *));
30 char	 *renamefrom __P((char *));
31 void	  reply __P((int, const char *, ...));
32 void	  retrieve __P((char *, char *));
33 void	  send_file_list __P((char *));
34 void	  setproctitle __P((const char *, ...));
35 void	  statcmd __P((void));
36 void	  statfilecmd __P((char *));
37 void	  store __P((char *, char *, int));
38 void	  upper __P((char *));
39 void	  user __P((char *));
40 char	 *yyerror __P((char *));
41