File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 7
7
* main
8
8
*
9
9
* Purpose:
10
- * This file contains a program that
10
+ * This file contains a program that
11
11
* dumps the number values of an image
12
12
* to an ascii text file.
13
13
*
18
18
* free_image_array
19
19
*
20
20
* Modifications:
21
- * 1 October 1998 - created to work with
21
+ * 1 October 1998 - created to work with
22
22
* all I O routines in imageio.c.
23
23
*
24
24
*************************************************/
25
25
26
26
#include "cips.h"
27
27
28
- main (argc , argv )
28
+ int does_not_exist ();
29
+ int get_image_size ();
30
+ int read_image_array ();
31
+ int free_image_array ();
32
+
33
+
34
+ int main (argc , argv )
29
35
int argc ;
30
36
char * argv [];
31
37
{
@@ -37,7 +43,7 @@ main(argc, argv)
37
43
short * * the_image ;
38
44
FILE * out_file ;
39
45
40
-
46
+
41
47
/******************************************
42
48
*
43
49
* Ensure the command line is correct.
@@ -51,7 +57,7 @@ main(argc, argv)
51
57
52
58
strcpy (in_name , argv [1 ]);
53
59
strcpy (out_name , argv [2 ]);
54
-
60
+
55
61
/******************************************
56
62
*
57
63
* Ensure the input image exists.
@@ -92,7 +98,7 @@ main(argc, argv)
92
98
for (i = 0 ; i < height ; i ++ ){
93
99
sprintf (line , "%5d>" , i );
94
100
for (j = 0 ; j < width ; j ++ ){
95
- sprintf (buffer , "-%3d" , the_image [i ][j ]);
101
+ sprintf (buffer , "-%3d" , the_image [i ][j ]);
96
102
strcat (line , buffer );
97
103
}
98
104
strcat (line , "\n" );
You can’t perform that action at this time.
0 commit comments