Fri, 21 Feb 2003 12:28:37 +0000
GPL
eric@62 | 1 | /* |
eric@62 | 2 | * t2p: Create a PDF file from the contents of one or more TIFF |
eric@62 | 3 | * bilevel image files. The images in the resulting PDF file |
eric@62 | 4 | * will be compressed using ITU-T T.6 (G4) fax encoding. |
eric@62 | 5 | * |
eric@62 | 6 | * PDF routines |
eric@67 | 7 | * $Id: pdf_util.h,v 1.3 2003/02/21 02:49:11 eric Exp $ |
eric@62 | 8 | * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> |
eric@62 | 9 | * |
eric@62 | 10 | * This program is free software; you can redistribute it and/or modify |
eric@62 | 11 | * it under the terms of the GNU General Public License version 2 as |
eric@62 | 12 | * published by the Free Software Foundation. Note that permission is |
eric@62 | 13 | * not granted to redistribute this program under the terms of any |
eric@62 | 14 | * other version of the General Public License. |
eric@62 | 15 | * |
eric@62 | 16 | * This program is distributed in the hope that it will be useful, |
eric@62 | 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
eric@62 | 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
eric@62 | 19 | * GNU General Public License for more details. |
eric@62 | 20 | * |
eric@62 | 21 | * You should have received a copy of the GNU General Public License |
eric@62 | 22 | * along with this program; if not, write to the Free Software |
eric@62 | 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA |
eric@62 | 24 | */ |
eric@62 | 25 | |
eric@62 | 26 | |
eric@59 | 27 | void pdf_fatal (char *fmt, ...); |
eric@59 | 28 | |
eric@67 | 29 | void *pdf_calloc (size_t nmemb, size_t size); |
eric@59 | 30 | |
eric@59 | 31 | char *pdf_strdup (char *s); |
eric@59 | 32 | |
eric@59 | 33 | #define pdf_assert(cond) do \ |
eric@59 | 34 | { \ |
eric@59 | 35 | if (! (cond)) \ |
eric@59 | 36 | pdf_fatal ("assert at %s(%d)\n", __FILE__, __LINE__); \ |
eric@59 | 37 | } while (0) |