-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxf.c
129 lines (103 loc) · 2.36 KB
/
xf.c
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include<stdio.h>
int main()
{
unsigned char buf1[1024*1024];
unsigned char buf2[1024*1024];
unsigned int sz1, sz2, sz;
FILE *fp1;
FILE *fp2;
FILE *fp3;
char fname1[]="input1.bin";
char fname2[]="input2.bin";
char fname3[]="output1.bin";
printf("Opening file 1\n");
fp1 = fopen(fname1, "rb");
//fp1 = fopen("input1.bin", "rb");
printf("Pointer file 1 is 0x%X\n", fp1);
if (fp1)
{
printf("File 1 opened\n");
}
else
{
printf("File 1 not found\n");
return 1;
}
printf("Opening file 2\n");
fp2 = fopen(fname2, "rb");
//fp2 = fopen("input2.bin", "rb");
printf("Pointer file 2 is 0x%X\n", fp2);
if (fp2)
{
printf("File 2 opened\n");
}
else
{
printf("File 2 not found\n");
return 1;
}
printf("Opening file 3\n");
fp3 = fopen(fname3, "wb");
//fp2 = fopen("input2.bin", "rb");
printf("Pointer file 3 is 0x%X\n", fp3);
if (fp3)
{
printf("File 3 opened\n");
}
else
{
printf("File 3 not found\n");
return 1;
}
//fgets(buf1, 255, (FILE*)fp1);
//fgets(buf2, 255, (FILE*)fp2);
fseek(fp1, 0L, SEEK_END);
sz1 = ftell(fp1);
fseek(fp1, 0L, SEEK_SET);
//rewind(fp1);
fseek(fp2, 0L, SEEK_END);
sz2 = ftell(fp2);
fseek(fp2, 0L, SEEK_SET);
//rewind(fp2);
if (sz1 < sz2)
{
sz = sz1;
}
else
{
sz = sz2;
}
printf("File 1 size %10d bytes.\n", sz1);
printf("File 2 size %10d bytes.\n", sz2);
printf("Minimo size %10d bytes.\n", sz);
fread(buf1, sizeof(buf1), 1, fp1);
fread(buf2, sizeof(buf2), 1, fp2);
printf("Buffer 1\n");
for(unsigned int i=0; i<sz; i++)
printf("%02X ", buf1[i]);
printf("\n");
printf("Buffer 2\n");
for(unsigned int i=0; i<sz; i++)
printf("%02X ", buf2[i]);
printf("\n");
printf("Buffer 3\n");
for(unsigned int i=0; i<sz; i++)
{
printf("%02X", (buf1[i]^buf2[i]));
fprintf(stderr, "%c", (buf1[i]^buf2[i]));
fprintf(fp3, "%c", (buf1[i]^buf2[i]));
}
printf("\n");
//fprintf(fp1, "This is testing for fprintf...\n");
//fputs("This is testing for fputs...\n", fp);
printf("Closing file 3\n");
fclose(fp3);
printf("%X\n", fp3);
printf("Closing file 2\n");
fclose(fp2);
printf("%X\n", fp2);
printf("Closing file 1\n");
fclose(fp1);
printf("%X\n", fp1);
return 0;
}