Root/
1 | /* |
2 | * pdf.h - Generate PDF |
3 | * |
4 | * Copyright 2012 by Werner Almesberger |
5 | * |
6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License as published by |
8 | * the Free Software Foundation; either version 2 of the License, or |
9 | * (at your option) any later version. |
10 | */ |
11 | |
12 | #ifndef PDF_H |
13 | #define PDF_H |
14 | |
15 | void make_pdf(int pdf, int use_portrait, const char *title_page); |
16 | |
17 | #endif /* !PDF_H */ |
18 |
Branches:
master