1 /************************************************************************/
2 /*									*/
3 /*  Data structures that describe postscript fonts.			*/
4 /*									*/
5 /************************************************************************/
6 
7 #   ifndef	PS_READ_WRITE_FONT_INFO_H
8 #   define	PS_READ_WRITE_FONT_INFO_H
9 
10 #   include	<sioGeneral.h>
11 #   include	"psFontInfo.h"
12 
13 /************************************************************************/
14 /*									*/
15 /*  Declarations.							*/
16 /*									*/
17 /************************************************************************/
18 
19 extern int psWriteAfmFile(		SimpleOutputStream *	sos,
20 					int			omitKernPairs,
21 					const AfmFontInfo *	afi );
22 
23 extern void psWriteFontInfoDict(	SimpleOutputStream *	sos,
24 					const AfmFontInfo *	afi );
25 
26 extern int psAfmReadAfm(		SimpleInputStream *	sisAfm,
27 					AfmFontInfo *		afi,
28 					int			deferMetrics );
29 
30 #   endif
31