pdf_util.h

Fri, 07 Mar 2003 10:16:08 +0000

author
eric
date
Fri, 07 Mar 2003 10:16:08 +0000
changeset 80
96c64a7566df
parent 74
12bc5088172e
child 81
0fc65859d436
permissions
-rw-r--r--

added name trees and number trees.

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@74 7 * $Id: pdf_util.h,v 1.4 2003/03/04 17:58:36 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@74 27 #include <assert.h>
eric@74 28
eric@74 29
eric@59 30 void pdf_fatal (char *fmt, ...);
eric@59 31
eric@67 32 void *pdf_calloc (size_t nmemb, size_t size);
eric@59 33
eric@59 34 char *pdf_strdup (char *s);
eric@59 35
eric@74 36 #if 1
eric@74 37 #define pdf_assert(cond) assert(cond)
eric@74 38 #else
eric@59 39 #define pdf_assert(cond) do \
eric@59 40 { \
eric@59 41 if (! (cond)) \
eric@59 42 pdf_fatal ("assert at %s(%d)\n", __FILE__, __LINE__); \
eric@59 43 } while (0)
eric@74 44 #endif