1*14506Ssam /* what..c 4.2 83/08/11 */ 2*14506Ssam 312306Stut #include <stdio.h> 412306Stut #include <ctype.h> 512306Stut #include <sys/types.h> 612306Stut #include <sys/stat.h> 712306Stut #include <assert.h> 812306Stut #define NFILES 100 912306Stut #define NAMES 2000 1012306Stut #define NFEED 5 1112306Stut extern exch(), comp(); 1212306Stut struct filans { 1312306Stut char *nm; 1412306Stut long fdate; 1512306Stut long size; 1612306Stut int uid; 1712306Stut }; 1812306Stut extern struct filans files[NFILES]; 1912306Stut extern char fnames[NAMES]; 20