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