about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-10-11 17:22:32 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2023-10-11 17:22:32 +0000
commit524d26d1aa6bdf87b2c5331dac5123270cacd670 (patch)
tree2fc50e7169a76f2f1735da8dca0731530dfc926f
parent48efce7e5dd088bc355c113f56986f60932b3ab9 (diff)
downloadnetpbm-mirror-524d26d1aa6bdf87b2c5331dac5123270cacd670.tar.gz
netpbm-mirror-524d26d1aa6bdf87b2c5331dac5123270cacd670.tar.xz
netpbm-mirror-524d26d1aa6bdf87b2c5331dac5123270cacd670.zip
whitespace
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4749 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--urt/Runput.c16
-rw-r--r--urt/cmd_name.c3
-rw-r--r--urt/rle_addhist.c3
-rw-r--r--urt/rle_getcom.c2
-rw-r--r--urt/rle_getskip.c3
-rw-r--r--urt/rle_open_f.c3
-rw-r--r--urt/rle_putcom.c3
-rw-r--r--urt/rle_putrow.c9
-rw-r--r--urt/rle_row_alc.c4
-rw-r--r--urt/vaxshort.c2
10 files changed, 47 insertions, 1 deletions
diff --git a/urt/Runput.c b/urt/Runput.c
index 1a7f2f7b..e9f2a6b8 100644
--- a/urt/Runput.c
+++ b/urt/Runput.c
@@ -259,6 +259,8 @@ RunSetup(rle_hdr * the_hdr)
     }
 }
 
+
+
 /*****************************************************************
  * TAG( RunSkipBlankLines )
  * Skip one or more blank lines in the RLE file.
@@ -270,6 +272,8 @@ RunSkipBlankLines(int nblank, rle_hdr * the_hdr)
     RSkipLines(nblank);
 }
 
+
+
 /*****************************************************************
  * TAG( RunSetColor )
  * Select a color and do carriage return.
@@ -282,6 +286,8 @@ RunSetColor(int c, rle_hdr * the_hdr)
     RSetColor(c);
 }
 
+
+
 /*****************************************************************
  * TAG( RunSkipPixels )
  * Skip a run of background.
@@ -298,6 +304,8 @@ RunSkipPixels(int nskip, int last, int wasrun, rle_hdr * the_hdr)
     }
 }
 
+
+
 /*****************************************************************
  * TAG( RunNewScanLine )
  * Perform a newline action.  Since CR is implied by the Set Color
@@ -313,6 +321,8 @@ RunNewScanLine(int flag, rle_hdr * the_hdr)
     }
 }
 
+
+
 /*****************************************************************
  * TAG( Runputdata )
  * Put one or more pixels of byte data into the output file.
@@ -330,6 +340,8 @@ Runputdata(rle_pixel * buf, int n, rle_hdr * the_hdr)
         putc( 0, rle_fd );
 }
 
+
+
 /*****************************************************************
  * TAG( Runputrun )
  * Output a single color run.
@@ -344,6 +356,7 @@ Runputrun(int color, int n, int last, rle_hdr * the_hdr)
 }
 
 
+
 /*****************************************************************
  * TAG( RunputEof )
  * Output an EOF opcode
@@ -354,3 +367,6 @@ RunputEof(rle_hdr * the_hdr)
     FILE * rle_fd = the_hdr->rle_file;
     REOF;
 }
+
+
+
diff --git a/urt/cmd_name.c b/urt/cmd_name.c
index 4b3f169b..6d48a63b 100644
--- a/urt/cmd_name.c
+++ b/urt/cmd_name.c
@@ -55,3 +55,6 @@ char **argv;
 
     return cp;
 }
+
+
+
diff --git a/urt/rle_addhist.c b/urt/rle_addhist.c
index 45c3dbfd..9debec28 100644
--- a/urt/rle_addhist.c
+++ b/urt/rle_addhist.c
@@ -107,3 +107,6 @@ rle_addhist(char *          argv[],
 
     rle_putcom(newc, out_hdr);
 }
+
+
+
diff --git a/urt/rle_getcom.c b/urt/rle_getcom.c
index a0a1e5ae..a85daa97 100644
--- a/urt/rle_getcom.c
+++ b/urt/rle_getcom.c
@@ -98,3 +98,5 @@ rle_getcom(const char * const name,
     return NULL;
 }
 
+
+
diff --git a/urt/rle_getskip.c b/urt/rle_getskip.c
index 3d36fba4..2482f2bf 100644
--- a/urt/rle_getskip.c
+++ b/urt/rle_getskip.c
@@ -162,3 +162,6 @@ rle_hdr *the_hdr;
     else
         return the_hdr->priv.get.scan_y;
 }
+
+
+
diff --git a/urt/rle_open_f.c b/urt/rle_open_f.c
index 65362a53..834a0c6d 100644
--- a/urt/rle_open_f.c
+++ b/urt/rle_open_f.c
@@ -226,7 +226,6 @@ dealWithSubprocess(const char *  const file_name,
 
 
 
-
 /*
  *  Purpose : Open a file for input or output as controlled by the mode
  *  parameter.  If no file name is specified (ie. file_name is null) then
@@ -322,3 +321,5 @@ rle_open_f(const char * prog_name, const char * file_name, const char * mode)
     return fp;
 }
 
+
+
diff --git a/urt/rle_putcom.c b/urt/rle_putcom.c
index 0bebd8d7..2ecc8d89 100644
--- a/urt/rle_putcom.c
+++ b/urt/rle_putcom.c
@@ -124,3 +124,6 @@ rle_putcom(const char * const value,
 
     return NULL;
 }
+
+
+
diff --git a/urt/rle_putrow.c b/urt/rle_putrow.c
index 5f808c92..31a596c8 100644
--- a/urt/rle_putrow.c
+++ b/urt/rle_putrow.c
@@ -502,6 +502,7 @@ rle_hdr * the_hdr;
 }
 
 
+
 /*****************************************************************
  * TAG( rle_put_init )
  *
@@ -540,6 +541,8 @@ rle_hdr *the_hdr;
         RLE_CLR_BIT( *the_hdr, -1 );
 }
 
+
+
 /*****************************************************************
  * TAG( rle_put_setup )
  *
@@ -562,12 +565,16 @@ rle_hdr * the_hdr;
     Setup();
 }
 
+
+
 void
 DefaultBlockHook(rle_hdr * the_hdr)
 {
                                         /* Do nothing */
 }
 
+
+
 /*****************************************************************
  * TAG( rle_puteof )
  * Write an EOF code into the output file.
@@ -591,6 +598,8 @@ rle_hdr * the_hdr;
     the_hdr->dispatch = NO_DISPATCH;
 }
 
+
+
 #ifndef FASTRUNS
 /*****************************************************************
  * TAG( same_color )
diff --git a/urt/rle_row_alc.c b/urt/rle_row_alc.c
index d7631744..4ed19880 100644
--- a/urt/rle_row_alc.c
+++ b/urt/rle_row_alc.c
@@ -97,6 +97,7 @@ rle_pixel ***scanp;
 }
 
 
+
 /*****************************************************************
  * TAG( rle_row_free )
  *
@@ -129,3 +130,6 @@ rle_pixel **scanp;
         }
     free( (char *)scanp );
 }
+
+
+
diff --git a/urt/vaxshort.c b/urt/vaxshort.c
index c39e78ec..182083ca 100644
--- a/urt/vaxshort.c
+++ b/urt/vaxshort.c
@@ -37,6 +37,8 @@ vax_gshort(char *msgp)
         return(i);
 }
 
+
+
 /*
  *                      V A X _ P S H O R T
  */