home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / linux / backup / star-1.3.1.tar.gz / star-1.3.1.tar / star-1.3.1 / star / diff.h < prev    next >
C/C++ Source or Header  |  1999-06-14  |  1KB  |  46 lines

  1. /* @(#)diff.h    1.6 99/06/15 Copyright 1993 J. Schilling */
  2. /*
  3.  *    Definitions for the taylorable diff command
  4.  *
  5.  *    Copyright (c) 1993 J. Schilling
  6.  */
  7. /*
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2, or (at your option)
  11.  * any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; see the file COPYING.  If not, write to
  20.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22.  
  23. #define    D_PERM    0x00001
  24. #define    D_TYPE    0x00002
  25. #define    D_NLINK    0x00004
  26. #define    D_UID    0x00010
  27. #define    D_GID    0x00020
  28. #define    D_UNAME    0x00040
  29. #define    D_GNAME    0x00080
  30. #define    D_ID    (D_UID|D_GID|D_UNAME|D_GNAME)
  31. #define    D_SIZE    0x00100
  32. #define    D_DATA    0x00200
  33. #define    D_RDEV    0x00400
  34. #define    D_HLINK    0x01000
  35. #define    D_SLINK    0x02000
  36. #define    D_SPARS    0x04000
  37. #define    D_ATIME    0x10000
  38. #define    D_MTIME    0x20000
  39. #define    D_CTIME    0x40000
  40. #define    D_TIMES    (D_ATIME|D_MTIME|D_CTIME)
  41.  
  42. #define    D_DEFLT    (~(D_NLINK|D_ATIME))
  43. #define    D_ALL    (~0L);
  44.  
  45. extern    long    diffopts;
  46.