File indexing completed on 2024-12-22 04:04:08

0001 /* Copyright (C) 2001-2019 Peter Selinger.
0002    This file is part of Potrace. It is free software and it is covered
0003    by the GNU General Public License. See the file COPYING for details. */
0004 
0005 
0006 #ifndef BACKEND_EPS_H
0007 #define BACKEND_EPS_H
0008 
0009 #include "potracelib.h"
0010 #include "main.h"
0011 
0012 int init_ps(FILE *fout);
0013 int page_ps(FILE *fout, potrace_path_t *plist, imginfo_t *imginfo);
0014 int term_ps(FILE *fout);
0015 
0016 int page_eps(FILE *fout, potrace_path_t *plist, imginfo_t *imginfo);
0017 
0018 #endif /* BACKEND_EPS_H */
0019