]> git.saurik.com Git - apple/shell_cmds.git/blobdiff - find/extern.h
shell_cmds-198.tar.gz
[apple/shell_cmds.git] / find / extern.h
index d909f1e617dc8ffc13f1b95ddfb920f3b72c1dc7..f4282f71ad7712a382b0dd4acb73549fdbc67559 100644 (file)
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
  * 4. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  * SUCH DAMAGE.
  *
  *     @(#)extern.h    8.3 (Berkeley) 4/16/94
- *     $FreeBSD: src/usr.bin/find/extern.h,v 1.9.2.4 2001/05/06 09:53:22 phk Exp $
+ *     $FreeBSD: src/usr.bin/find/extern.h,v 1.26 2010/12/11 08:32:16 joel Exp $
  */
 
 #include <sys/cdefs.h>
 
-void    brace_subst __P((char *, char **, char *, int));
-void   *emalloc __P((unsigned int));
-PLAN   *find_create __P((char ***));
-int     find_execute __P((PLAN *, char **));
-PLAN   *find_formplan __P((char **));
-PLAN   *not_squish __P((PLAN *));
-PLAN   *or_squish __P((PLAN *));
-PLAN   *paren_squish __P((PLAN *));
+void    brace_subst(char *, char **, char *, int);
+PLAN   *find_create(char ***);
+int     find_execute(PLAN *, char **);
+PLAN   *find_formplan(char **);
+PLAN   *not_squish(PLAN *);
+PLAN   *or_squish(PLAN *);
+PLAN   *paren_squish(PLAN *);
+time_t  get_date(char *);
 struct stat;
-void    printlong __P((char *, char *, struct stat *));
-int     queryuser __P((char **));
-OPTION *option __P((char *));
+void    printlong(char *, char *, struct stat *);
+int     queryuser(char **);
+OPTION *lookup_option(const char *);
+void    finish_execplus(void);
 
 creat_f        c_Xmin;
 creat_f        c_Xtime;
+creat_f        c_acl;
 creat_f        c_and;
 creat_f        c_delete;
 creat_f        c_depth;
@@ -58,9 +56,7 @@ creat_f       c_empty;
 creat_f        c_exec;
 creat_f        c_flags;
 creat_f        c_follow;
-#if !defined(__NetBSD__)
 creat_f        c_fstype;
-#endif
 creat_f        c_group;
 creat_f        c_inum;
 creat_f        c_links;
@@ -73,6 +69,7 @@ creat_f       c_nouser;
 creat_f        c_perm;
 creat_f        c_print;
 creat_f        c_regex;
+creat_f        c_samefile;
 creat_f        c_simple;
 creat_f        c_size;
 creat_f        c_type;
@@ -81,12 +78,15 @@ creat_f     c_xdev;
 
 exec_f f_Xmin;
 exec_f f_Xtime;
+exec_f f_acl;
 exec_f f_always_true;
 exec_f f_closeparen;
 exec_f f_delete;
+exec_f f_depth;
 exec_f f_empty;
 exec_f f_exec;
 exec_f f_expr;
+exec_f f_false;
 exec_f f_flags;
 exec_f f_fstype;
 exec_f f_group;
@@ -105,11 +105,20 @@ exec_f    f_perm;
 exec_f f_print;
 exec_f f_print0;
 exec_f f_prune;
+exec_f f_quit;
 exec_f f_regex;
 exec_f f_size;
 exec_f f_type;
 exec_f f_user;
+#ifdef __APPLE__
+exec_f f_xattr;
+exec_f f_xattrname;
+#endif /* __APPLE__ */
 
 extern int ftsoptions, isdeprecated, isdepth, isoutput, issort, isxargs;
 extern int mindepth, maxdepth;
 extern int regexp_flags;
+extern time_t now;
+extern int dotfd;
+extern FTS *tree;
+extern int execplus_error;