about summary refs log tree commit diff
path: root/urt/Runput.c
diff options
context:
space:
mode:
Diffstat (limited to 'urt/Runput.c')
-rw-r--r--urt/Runput.c16
1 files changed, 16 insertions, 0 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;
 }
+
+
+