xref: /potrace-1.14/src/flate.h (revision b3fce824)
1 /* Copyright (C) 2001-2017 Peter Selinger.
2    This file is part of Potrace. It is free software and it is covered
3    by the GNU General Public License. See the file COPYING for details. */
4 
5 
6 #ifndef FLATE_H
7 #define FLATE_H
8 
9 int dummy_xship(FILE *f, int filter, const char *s, int len);
10 int flate_xship(FILE *f, int filter, const char *s, int len);
11 int pdf_xship(FILE *f, int filter, const char *s, int len);
12 int lzw_xship(FILE *f, int filter, const char *s, int len);
13 int a85_xship(FILE *f, int filter, const char *s, int len);
14 
15 #endif /* FLATE_H */
16