Skip to content

Commit 4cd996d

Browse files
Validated November 2020
1 parent 14f4c70 commit 4cd996d

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

dumpi.c

+12-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* main
88
*
99
* Purpose:
10-
* This file contains a program that
10+
* This file contains a program that
1111
* dumps the number values of an image
1212
* to an ascii text file.
1313
*
@@ -18,14 +18,20 @@
1818
* free_image_array
1919
*
2020
* Modifications:
21-
* 1 October 1998 - created to work with
21+
* 1 October 1998 - created to work with
2222
* all I O routines in imageio.c.
2323
*
2424
*************************************************/
2525

2626
#include "cips.h"
2727

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)
2935
int argc;
3036
char *argv[];
3137
{
@@ -37,7 +43,7 @@ main(argc, argv)
3743
short **the_image;
3844
FILE *out_file;
3945

40-
46+
4147
/******************************************
4248
*
4349
* Ensure the command line is correct.
@@ -51,7 +57,7 @@ main(argc, argv)
5157

5258
strcpy(in_name, argv[1]);
5359
strcpy(out_name, argv[2]);
54-
60+
5561
/******************************************
5662
*
5763
* Ensure the input image exists.
@@ -92,7 +98,7 @@ main(argc, argv)
9298
for(i=0; i<height; i++){
9399
sprintf(line, "%5d>", i);
94100
for(j=0; j<width; j++){
95-
sprintf(buffer, "-%3d", the_image[i][j]);
101+
sprintf(buffer, "-%3d", the_image[i][j]);
96102
strcat(line, buffer);
97103
}
98104
strcat(line, "\n");

0 commit comments

Comments
 (0)