1.1 diff -r 0dbb3612d812 -r 9bd354b83e16 pdf_prim.c 1.2 --- a/pdf_prim.c Thu Feb 20 12:21:10 2003 +0000 1.3 +++ b/pdf_prim.c Thu Feb 20 12:44:17 2003 +0000 1.4 @@ -1,7 +1,36 @@ 1.5 +/* 1.6 + * t2p: Create a PDF file from the contents of one or more TIFF 1.7 + * bilevel image files. The images in the resulting PDF file 1.8 + * will be compressed using ITU-T T.6 (G4) fax encoding. 1.9 + * 1.10 + * PDF routines 1.11 + * $Id: pdf_prim.c,v 1.3 2003/02/20 04:44:17 eric Exp $ 1.12 + * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.13 + * 1.14 + * This program is free software; you can redistribute it and/or modify 1.15 + * it under the terms of the GNU General Public License version 2 as 1.16 + * published by the Free Software Foundation. Note that permission is 1.17 + * not granted to redistribute this program under the terms of any 1.18 + * other version of the General Public License. 1.19 + * 1.20 + * This program is distributed in the hope that it will be useful, 1.21 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 1.22 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1.23 + * GNU General Public License for more details. 1.24 + * 1.25 + * You should have received a copy of the GNU General Public License 1.26 + * along with this program; if not, write to the Free Software 1.27 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA 1.28 + */ 1.29 + 1.30 + 1.31 +#include <stdbool.h> 1.32 +#include <stdint.h> 1.33 #include <stdio.h> 1.34 #include <stdlib.h> 1.35 #include <string.h> 1.36 1.37 +#include "bitblt.h" 1.38 #include "pdf.h" 1.39 #include "pdf_util.h" 1.40 #include "pdf_prim.h" 1.41 @@ -60,7 +89,7 @@ 1.42 unsigned long ref_count; 1.43 pdf_obj_type type; 1.44 union { 1.45 - int bool; 1.46 + bool boolean; 1.47 char *name; 1.48 char *string; 1.49 unsigned long integer; 1.50 @@ -170,10 +199,10 @@ 1.51 } 1.52 1.53 1.54 -struct pdf_obj *pdf_new_bool (int bool) 1.55 +struct pdf_obj *pdf_new_bool (bool val) 1.56 { 1.57 struct pdf_obj *obj = pdf_new_obj (PT_BOOL); 1.58 - obj->val.bool = bool; 1.59 + obj->val.boolean = val; 1.60 return (obj); 1.61 } 1.62 1.63 @@ -450,7 +479,7 @@ 1.64 fprintf (pdf_file->f, "null "); 1.65 break; 1.66 case PT_BOOL: 1.67 - if (obj->val.bool) 1.68 + if (obj->val.boolean) 1.69 fprintf (pdf_file->f, "true "); 1.70 else 1.71 fprintf (pdf_file->f, "false ");