source: trunk/athena/bin/delete/pattern.h @ 4505

Revision 4505, 1.2 KB checked in by jik, 34 years ago (diff)
Shorten mit-copyright.h to mit-copying.h so it'll work on systems with 14-char filenames.
Line 
1/*
2 * $Source: /afs/dev.mit.edu/source/repository/athena/bin/delete/pattern.h,v $
3 * $Author: jik $
4 * $Header: /afs/dev.mit.edu/source/repository/athena/bin/delete/pattern.h,v 1.6 1991-02-28 18:43:19 jik Exp $
5 *
6 * This program is part of a package including delete, undelete,
7 * lsdel, expunge and purge.  The software suite is meant as a
8 * replacement for rm which allows for file recovery.
9 *
10 * Copyright (c) 1989 by the Massachusetts Institute of Technology.
11 * For copying and distribution information, see the file "mit-copying.h."
12 */
13#include "mit-copying.h"
14
15int add_str();
16int add_arrays();
17int find_contents();
18int find_deleted_contents();
19int find_deleted_contents_recurs();
20int find_matches();
21int find_deleted_matches();
22int find_recurses();
23int find_deleted_recurses();
24
25#define FIND_DELETED            (1<<0)
26#define FIND_UNDELETED          (1<<1)
27#define RECURS_FIND_DELETED     (1<<2)
28#define RECURS_FIND_UNDELETED   (1<<3)
29#define RECURS_DELETED          (1<<4)
30#define FOLLW_LINKS             (1<<5)
31#define FOLLW_MOUNTPOINTS       (1<<6)
32#define FIND_DOTFILES           (1<<7)
33#define FIND_CONTENTS           (1<<8)
34#define SUPPRESS_WARNINGS       (1<<9)
35#define RECURS                  (RECURS_FIND_DELETED | RECURS_FIND_UNDELETED |\
36                                 RECURS_DELETED | FIND_CONTENTS)
Note: See TracBrowser for help on using the repository browser.