Deleted Added
full compact
find.h (91400) find.h (92786)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Cimarron D. Taylor of the University of California, Berkeley.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)find.h 8.1 (Berkeley) 6/6/93
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Cimarron D. Taylor of the University of California, Berkeley.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)find.h 8.1 (Berkeley) 6/6/93
37 * $FreeBSD: head/usr.bin/find/find.h 91400 2002-02-27 17:57:00Z dwmalone $
37 * $FreeBSD: head/usr.bin/find/find.h 92786 2002-03-20 10:32:05Z markm $
38 */
39
40#include <regex.h>
41
42/* forward declarations */
43struct _plandata;
44struct _option;
45
46/* execute function */
38 */
39
40#include <regex.h>
41
42/* forward declarations */
43struct _plandata;
44struct _option;
45
46/* execute function */
47typedef int exec_f __P((struct _plandata *, FTSENT *));
47typedef int exec_f(struct _plandata *, FTSENT *);
48/* create function */
49typedef struct _plandata *creat_f(struct _option *, char ***);
50
51/* function modifiers */
52#define F_NEEDOK 0x00000001 /* -ok vs. -exec */
53#define F_EXECDIR 0x00000002 /* -execdir vs. -exec */
54#define F_TIME_A 0x00000004 /* one of -atime, -anewer, -newera* */
55#define F_TIME_C 0x00000008 /* one of -ctime, -cnewer, -newerc* */

--- 73 unchanged lines hidden ---
48/* create function */
49typedef struct _plandata *creat_f(struct _option *, char ***);
50
51/* function modifiers */
52#define F_NEEDOK 0x00000001 /* -ok vs. -exec */
53#define F_EXECDIR 0x00000002 /* -execdir vs. -exec */
54#define F_TIME_A 0x00000004 /* one of -atime, -anewer, -newera* */
55#define F_TIME_C 0x00000008 /* one of -ctime, -cnewer, -newerc* */

--- 73 unchanged lines hidden ---