about summary refs log tree commit diff
path: root/converter/other/pngtxt.h
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-07-26 00:38:56 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-07-26 00:38:56 +0000
commite821db62a988c16efdf2256928a3c68fb7cdf9d3 (patch)
tree15e64121ccc4a660f52a1e9f7dcafd2980057442 /converter/other/pngtxt.h
parenta507d475a249a41fe3452279c21fa5d595f39289 (diff)
downloadnetpbm-mirror-e821db62a988c16efdf2256928a3c68fb7cdf9d3.tar.gz
netpbm-mirror-e821db62a988c16efdf2256928a3c68fb7cdf9d3.tar.xz
netpbm-mirror-e821db62a988c16efdf2256928a3c68fb7cdf9d3.zip
Implement -itxt
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2611 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pngtxt.h')
-rw-r--r--converter/other/pngtxt.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/converter/other/pngtxt.h b/converter/other/pngtxt.h
index c83303df..3e6ff2af 100644
--- a/converter/other/pngtxt.h
+++ b/converter/other/pngtxt.h
@@ -1,15 +1,17 @@
 #ifndef PNGTXT_H_INCLUDED
 #define PNGTXT_H_INCLUDED
 
-#include "pm_c_util.h"
+#include <stdbool.h>
+#include <stdio.h>
 #include <png.h>
 
 struct pngx;
 
 void 
-pngtxt_read(struct pngx * const pngxP,
-            FILE *        const tfp, 
-            bool          const ztxt,
-            bool          const verbose);
+pngtxt_addChunk(struct pngx * const pngxP,
+                FILE *        const tfp, 
+                bool          const ztxt,
+                bool          const itxt,
+                bool          const verbose);
 
 #endif