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
|
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
int main(int argc,char *argv[])
{
void Dump(char *fn,FILE *fp);
FILE *fp;
int f;
if (argc==1)
Dump("stdin",stdin);
else
for(f=1;f<argc;f++)
if ((fp=fopen(argv[f],"r")))
{
Dump(argv[f],fp);
fclose(fp);
}
else
fprintf(stderr,"Couldn't open %s\n",argv[f]);
}
void Dump(char *fn,FILE *fp)
{
char s[17];
int p;
int f;
int b;
printf("File:%s\n",fn);
b=!EOF;
p=0;
while(b!=EOF)
{
strcpy(s," ");
printf("%6.6x: ",p);
p+=16;
for(f=0;f<16;f++)
{
if((b!=EOF)&&((b=getc(fp))!=EOF))
{
printf("%2.2x ",(unsigned char)b);
if (isprint(b))
s[f]=b;
else
s[f]='.';
}
else
printf("** ");
}
printf(" %s\n",s);
}
}
|