xref: /original-bsd/libexec/ftpd/extern.h (revision e58c8952)
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.2 (Berkeley) 04/04/94
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   *getline __P((char *, int, FILE *));
19 void	logwtmp __P((char *, char *, char *));
20 void	lreply __P((int, const char *, ...));
21 void	makedir __P((char *));
22 void	nack __P((char *));
23 void	pass __P((char *));
24 void	passive __P((void));
25 void	perror_reply __P((int, char *));
26 void	pwd __P((void));
27 void	removedir __P((char *));
28 void	renamecmd __P((char *, char *));
29 char   *renamefrom __P((char *));
30 void	reply __P((int, const char *, ...));
31 void	retrieve __P((char *, char *));
32 void	send_file_list __P((char *));
33 void	setproctitle __P((const char *, ...));
34 void	statcmd __P((void));
35 void	statfilecmd __P((char *));
36 void	store __P((char *, char *, int));
37 void	upper __P((char *));
38 void	user __P((char *));
39 void	yyerror __P((char *));
40