use library err/warn(3) functions; lint, prettiness police
[unix-history] / usr / src / usr.bin / find / extern.h
CommitLineData
3519f85c
KB
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 *
a76ed48d 7 * @(#)extern.h 5.4 (Berkeley) %G%
3519f85c
KB
8 */
9
10#include <sys/cdefs.h>
11
12void brace_subst __P((char *, char **, char *, int));
13void *emalloc __P((unsigned int));
3519f85c
KB
14PLAN *find_create __P((char ***));
15void find_execute __P((PLAN *, char **));
16PLAN *find_formplan __P((char **));
17PLAN *not_squish __P((PLAN *));
a76ed48d 18OPTION *option __P((char *));
3519f85c
KB
19PLAN *or_squish __P((PLAN *));
20PLAN *paren_squish __P((PLAN *));
21struct stat;
22void printlong __P((char *, char *, struct stat *));
23int queryuser __P((char **));
24
25PLAN *c_atime __P((char *));
26PLAN *c_ctime __P((char *));
27PLAN *c_depth __P((void));
28PLAN *c_exec __P((char ***, int));
29PLAN *c_follow __P((void));
30PLAN *c_fstype __P((char *));
31PLAN *c_group __P((char *));
32PLAN *c_inum __P((char *));
33PLAN *c_links __P((char *));
34PLAN *c_ls __P((void));
35PLAN *c_name __P((char *));
36PLAN *c_newer __P((char *));
37PLAN *c_nogroup __P((void));
38PLAN *c_nouser __P((void));
99d9c10c 39PLAN *c_path __P((char *));
3519f85c
KB
40PLAN *c_perm __P((char *));
41PLAN *c_print __P((void));
42PLAN *c_prune __P((void));
43PLAN *c_size __P((char *));
44PLAN *c_type __P((char *));
45PLAN *c_user __P((char *));
46PLAN *c_xdev __P((void));
47PLAN *c_openparen __P((void));
48PLAN *c_closeparen __P((void));
49PLAN *c_mtime __P((char *));
50PLAN *c_not __P((void));
51PLAN *c_or __P((void));
52
a39828ca 53extern int ftsoptions, isdeprecated, isdepth, isoutput, isxargs;