xref: /original-bsd/usr.bin/find/extern.h (revision ca5e3989)
19a49a1a3Sbostic /*-
2*ca5e3989Sbostic  * Copyright (c) 1991, 1993, 1994
37100ea1cSbostic  *	The Regents of the University of California.  All rights reserved.
49a49a1a3Sbostic  *
59a49a1a3Sbostic  * %sccs.include.redist.c%
69a49a1a3Sbostic  *
7*ca5e3989Sbostic  *	@(#)extern.h	8.3 (Berkeley) 04/16/94
89a49a1a3Sbostic  */
99a49a1a3Sbostic 
109a49a1a3Sbostic #include <sys/cdefs.h>
119a49a1a3Sbostic 
129a49a1a3Sbostic void	 brace_subst __P((char *, char **, char *, int));
139a49a1a3Sbostic void	*emalloc __P((unsigned int));
149a49a1a3Sbostic PLAN	*find_create __P((char ***));
159769c02aSbostic int	 find_execute __P((PLAN *, char **));
169a49a1a3Sbostic PLAN	*find_formplan __P((char **));
179a49a1a3Sbostic PLAN	*not_squish __P((PLAN *));
189a49a1a3Sbostic PLAN	*or_squish __P((PLAN *));
199a49a1a3Sbostic PLAN	*paren_squish __P((PLAN *));
209a49a1a3Sbostic struct stat;
219a49a1a3Sbostic void	 printlong __P((char *, char *, struct stat *));
229a49a1a3Sbostic int	 queryuser __P((char **));
239a49a1a3Sbostic 
249a49a1a3Sbostic PLAN	*c_atime __P((char *));
259a49a1a3Sbostic PLAN	*c_ctime __P((char *));
269a49a1a3Sbostic PLAN	*c_depth __P((void));
279a49a1a3Sbostic PLAN	*c_exec __P((char ***, int));
289a49a1a3Sbostic PLAN	*c_follow __P((void));
299a49a1a3Sbostic PLAN	*c_fstype __P((char *));
309a49a1a3Sbostic PLAN	*c_group __P((char *));
319a49a1a3Sbostic PLAN	*c_inum __P((char *));
329a49a1a3Sbostic PLAN	*c_links __P((char *));
339a49a1a3Sbostic PLAN	*c_ls __P((void));
349a49a1a3Sbostic PLAN	*c_name __P((char *));
359a49a1a3Sbostic PLAN	*c_newer __P((char *));
369a49a1a3Sbostic PLAN	*c_nogroup __P((void));
379a49a1a3Sbostic PLAN	*c_nouser __P((void));
3826d1cce8Sbostic PLAN	*c_path __P((char *));
399a49a1a3Sbostic PLAN	*c_perm __P((char *));
409a49a1a3Sbostic PLAN	*c_print __P((void));
419a49a1a3Sbostic PLAN	*c_prune __P((void));
429a49a1a3Sbostic PLAN	*c_size __P((char *));
439a49a1a3Sbostic PLAN	*c_type __P((char *));
449a49a1a3Sbostic PLAN	*c_user __P((char *));
459a49a1a3Sbostic PLAN	*c_xdev __P((void));
469a49a1a3Sbostic PLAN	*c_openparen __P((void));
479a49a1a3Sbostic PLAN	*c_closeparen __P((void));
489a49a1a3Sbostic PLAN	*c_mtime __P((char *));
499a49a1a3Sbostic PLAN	*c_not __P((void));
509a49a1a3Sbostic PLAN	*c_or __P((void));
519a49a1a3Sbostic 
527a4ac631Sbostic extern int ftsoptions, isdeprecated, isdepth, isoutput, isxargs;
53