1/*
2 * $Id: ppd.h,v 1.6 2009-10-13 22:55:37 didg Exp $
3 *
4 * Copyright (c) 1995 Regents of The University of Michigan.
5 * All Rights Reserved.  See COPYRIGHT.
6 */
7
8#ifndef PAPD_PPD_H
9#define PAPD_PPD_H 1
10
11#include <sys/cdefs.h>
12
13struct ppd_font {
14    char		*pd_font;
15    struct ppd_font	*pd_next;
16};
17
18struct ppd_feature {
19    char	*pd_name;
20    char	*pd_value;
21};
22
23struct ppd_feature	*ppd_feature (const char *, int);
24struct ppd_font		*ppd_font (char *);
25int read_ppd (char *, int);
26
27#endif /* PAPD_PPD_H */
28