[BACK]Return to extern.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / find

Annotation of src/usr.bin/find/extern.h, Revision 1.10

1.10    ! deraadt     1: /* *      $OpenBSD: extern.h,v 1.9 1999/12/04 22:42:31 millert Exp $*/
1.1       deraadt     2: /*-
                      3:  * Copyright (c) 1991, 1993
                      4:  *     The Regents of the University of California.  All rights reserved.
                      5:  *
                      6:  * Redistribution and use in source and binary forms, with or without
                      7:  * modification, are permitted provided that the following conditions
                      8:  * are met:
                      9:  * 1. Redistributions of source code must retain the above copyright
                     10:  *    notice, this list of conditions and the following disclaimer.
                     11:  * 2. Redistributions in binary form must reproduce the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer in the
                     13:  *    documentation and/or other materials provided with the distribution.
                     14:  * 3. All advertising materials mentioning features or use of this software
                     15:  *    must display the following acknowledgement:
                     16:  *     This product includes software developed by the University of
                     17:  *     California, Berkeley and its contributors.
                     18:  * 4. Neither the name of the University nor the names of its contributors
                     19:  *    may be used to endorse or promote products derived from this software
                     20:  *    without specific prior written permission.
                     21:  *
                     22:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     23:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     24:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     25:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     26:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     27:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     28:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     29:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     30:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     31:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     32:  * SUCH DAMAGE.
                     33:  *
                     34:  *     from: @(#)extern.h      8.1 (Berkeley) 6/6/93
                     35:  */
                     36:
                     37: #include <sys/cdefs.h>
                     38:
                     39: void    brace_subst __P((char *, char **, char *, int));
                     40: void   *emalloc __P((unsigned int));
                     41: PLAN   *find_create __P((char ***));
                     42: void    find_execute __P((PLAN *, char **));
                     43: PLAN   *find_formplan __P((char **));
                     44: PLAN   *not_squish __P((PLAN *));
                     45: OPTION *option __P((char *));
                     46: PLAN   *or_squish __P((PLAN *));
                     47: PLAN   *paren_squish __P((PLAN *));
                     48: struct stat;
                     49: void    printlong __P((char *, char *, struct stat *));
                     50: int     queryuser __P((char **));
1.6       tholo      51: void    show_path __P((int));
1.1       deraadt    52:
1.8       deraadt    53: PLAN   *c_amin __P((char *));
1.9       millert    54: PLAN   *c_anewer __P((char *));
1.1       deraadt    55: PLAN   *c_atime __P((char *));
1.8       deraadt    56: PLAN   *c_cmin __P((char *));
1.9       millert    57: PLAN   *c_cnewer __P((char *));
1.1       deraadt    58: PLAN   *c_ctime __P((char *));
                     59: PLAN   *c_depth __P((void));
1.5       tholo      60: PLAN   *c_empty __P((void));
1.1       deraadt    61: PLAN   *c_exec __P((char ***, int));
1.7       millert    62: PLAN   *c_execdir __P((char ***));
1.1       deraadt    63: PLAN   *c_follow __P((void));
                     64: PLAN   *c_fstype __P((char *));
                     65: PLAN   *c_group __P((char *));
1.10    ! deraadt    66: PLAN   *c_iname __P((char *));
1.1       deraadt    67: PLAN   *c_inum __P((char *));
                     68: PLAN   *c_links __P((char *));
                     69: PLAN   *c_ls __P((void));
1.4       tholo      70: PLAN   *c_maxdepth __P((char *));
                     71: PLAN   *c_mindepth __P((char *));
1.8       deraadt    72: PLAN   *c_mmin __P((char *));
1.1       deraadt    73: PLAN   *c_name __P((char *));
                     74: PLAN   *c_newer __P((char *));
                     75: PLAN   *c_nogroup __P((void));
                     76: PLAN   *c_nouser __P((void));
                     77: PLAN   *c_path __P((char *));
                     78: PLAN   *c_perm __P((char *));
                     79: PLAN   *c_print __P((void));
                     80: PLAN   *c_print0 __P((void));
                     81: PLAN   *c_prune __P((void));
                     82: PLAN   *c_size __P((char *));
                     83: PLAN   *c_type __P((char *));
                     84: PLAN   *c_user __P((char *));
                     85: PLAN   *c_xdev __P((void));
                     86: PLAN   *c_openparen __P((void));
                     87: PLAN   *c_closeparen __P((void));
                     88: PLAN   *c_mtime __P((char *));
                     89: PLAN   *c_not __P((void));
                     90: PLAN   *c_or __P((void));
                     91:
                     92: extern int ftsoptions, isdeprecated, isdepth, isoutput, isxargs;