home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Wtestowe / Clico / UNIX / SAMBA / SOURCE / SAMBA.TAR / samba-1.9.17 / source / clitar.h < prev    next >
C/C++ Source or Header  |  1996-05-04  |  287b  |  18 lines

  1.  
  2. #define TBLOCK 512
  3. #define NAMSIZ 100
  4. union hblock {
  5.   char dummy[TBLOCK];
  6.   struct header {
  7.     char name[NAMSIZ];
  8.     char mode[8];
  9.     char uid[8];
  10.     char gid[8];
  11.     char size[12];
  12.     char mtime[12];
  13.     char chksum[8];
  14.     char linkflag;
  15.     char linkname[NAMSIZ];
  16.   } dbuf;
  17. };
  18.