find.h (1c8329632ead4c55efc169bdd247330eaa0b50d8) | find.h (31d534254ec82016c2bfe15ac3a0608f3ca45505) |
---|---|
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 --- 58 unchanged lines hidden (view full) --- 67#define F_ANY 0x00000800 /* perm */ 68#define F_MTMASK 0x00003000 69#define F_MTFLAG 0x00000000 /* fstype */ 70#define F_MTTYPE 0x00001000 71#define F_MTUNKNOWN 0x00002000 72#define F_IGNCASE 0x00010000 /* iname ipath iregex */ 73#define F_EXACTTIME F_IGNCASE /* -[acm]time units syntax */ 74#define F_EXECPLUS 0x00020000 /* -exec ... {} + */ | 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 --- 58 unchanged lines hidden (view full) --- 67#define F_ANY 0x00000800 /* perm */ 68#define F_MTMASK 0x00003000 69#define F_MTFLAG 0x00000000 /* fstype */ 70#define F_MTTYPE 0x00001000 71#define F_MTUNKNOWN 0x00002000 72#define F_IGNCASE 0x00010000 /* iname ipath iregex */ 73#define F_EXACTTIME F_IGNCASE /* -[acm]time units syntax */ 74#define F_EXECPLUS 0x00020000 /* -exec ... {} + */ |
75#define F_TIME_B 0x00040000 /* one of -Btime, -Bnewer, -newerB* */ 76#define F_TIME2_B 0x00080000 /* one of -newer?B */ |
|
75 76/* node definition */ 77typedef struct _plandata { 78 struct _plandata *next; /* next node */ 79 exec_f *execute; /* node evaluation function */ 80 int flags; /* private flags */ 81 union { 82 gid_t _g_data; /* gid */ --- 62 unchanged lines hidden --- | 77 78/* node definition */ 79typedef struct _plandata { 80 struct _plandata *next; /* next node */ 81 exec_f *execute; /* node evaluation function */ 82 int flags; /* private flags */ 83 union { 84 gid_t _g_data; /* gid */ --- 62 unchanged lines hidden --- |