]> arthur.barton.de Git - netatalk.git/blob - etc/papd/ppd.h
prototyping to allow the compiler to do some real argument checking
[netatalk.git] / etc / papd / ppd.h
1 /*
2  * Copyright (c) 1995 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5 #ifndef PAPD_PPD_H
6 #define PAPD_PPD_H 1
7
8 struct ppd_font {
9     char                *pd_font;
10     struct ppd_font     *pd_next;
11 };
12
13 struct ppd_feature {
14     char        *pd_name;
15     char        *pd_value;
16 };
17
18 struct ppd_feature      *ppd_feature __P((const char *, int));
19 struct ppd_font         *ppd_font __P((char *));
20 int read_ppd __P((char *, int));
21 int ppd_init __P(( void ));
22
23 #endif /* PAPD_PPD_H */