changeset 2055:6c6a4ea67540

Make two functions static and one not.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 04 Dec 2018 10:33:06 +0200
parents 1a032298adb8
children c27ed6465022
files tools/libgfx.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/tools/libgfx.c	Tue Dec 04 09:55:24 2018 +0200
+++ b/tools/libgfx.c	Tue Dec 04 10:33:06 2018 +0200
@@ -1602,7 +1602,7 @@
 }
 
 
-static BOOL dmIFFDecodeByteRun1Row(DMResource *fp, Uint8 *buf, const size_t bufLen)
+BOOL dmIFFDecodeByteRun1Row(DMResource *fp, Uint8 *buf, const size_t bufLen)
 {
     size_t offs = 0;
     do
@@ -2082,7 +2082,7 @@
 };
 
 
-BOOL dmIFFEncodeByteRun1LIT(DMResource *fp,
+static BOOL dmIFFEncodeByteRun1LIT(DMResource *fp,
     const Uint8 *buf, const size_t offs,
     const size_t count)
 {
@@ -2097,7 +2097,7 @@
 }
 
 
-BOOL dmIFFEncodeByteRun1RLE(DMResource *fp,
+static BOOL dmIFFEncodeByteRun1RLE(DMResource *fp,
     const Uint8 *buf, const size_t offs,
     const size_t count)
 {