File: compare.c

package info (click to toggle)
gcl 2.6.14-21
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 60,864 kB
  • sloc: ansic: 177,407; lisp: 151,509; asm: 128,169; sh: 22,510; cpp: 11,923; tcl: 3,181; perl: 2,930; makefile: 2,360; sed: 334; yacc: 226; lex: 95; awk: 30; fortran: 24; csh: 23
file content (31 lines) | stat: -rwxr-xr-x 681 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <stdio.h>
#include <a.out.h>

/* Skip over SKIP bytes, and then compare files, up to the length
   of the shortest.
*/
  
#define SKIP sizeof(struct exec)


main(argc,argv)
     int argc;
     char *argv[];
       
{FILE *fp1,*fp2;
 int i;
 if (argc!=2) {printf("Usage:compare file1 file2 "); exit(1);}
 fp1=fopen(argv[1],"r");
 fp2=fopen(argv[2],"r");
 if(fp1==0 || fp2==0){ perror("could not open file");
		        fflush(stdout); exit(1);}
 for (i=0; i< SKIP; i++)
   {getc(fp1); getc(fp2);}
 while (!feof(fp1) && !feof(fp2))
   {if (getc(fp1)!=getc(fp2))
     { if(feof(fp1)|| feof(fp2)) exit(1);
       printf("they differed at %d",i);exit(1);}
  i++;}

 exit(0);}