about summary refs log tree commit diff
path: root/converter/other/pngtxt.h
blob: 30fba1fc3ae849bd7a6a5edb9ec37d9c774b7585 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef PNGTXT_H_INCLUDED
#define PNGTXT_H_INCLUDED

#include <stdbool.h>
#include <stdio.h>
#include <png.h>

struct pngx;

void
pngtxt_addChunk(struct pngx * const pngxP,
                FILE *        const tfp,
                bool          const ztxt,
                bool          const itxt,
                bool          const verbose);

#endif