Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 3.1 patch 650 git-svn-id: svn://10.65.10.50/trunk@14148 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
/* $Id: p_icclib.c,v 1.2 2006-07-11 13:10:33 alex Exp $
 | 
						|
 *
 | 
						|
 * ICClib routines for PDFlib, slightly modified from the original ICClib.
 | 
						|
 * (see below).
 | 
						|
 *
 | 
						|
 * $Log: not supported by cvs2svn $
 | 
						|
 * Revision 1.1.2.1  2006/06/09 13:25:50  brugno
 | 
						|
 * Patch level         :
 | 
						|
 * Files correlati     :
 | 
						|
 * Ricompilazione Demo : [ ]
 | 
						|
 * Commento            :
 | 
						|
 *
 | 
						|
 * Revision 1.1  2006/05/04 16:36:51  brugno
 | 
						|
 * Patch level         :
 | 
						|
 * Files correlati     :
 | 
						|
 * Ricompilazione Demo : [ ]
 | 
						|
 * Commento            :Primo commit del modulo
 | 
						|
 *
 | 
						|
 * Revision 1.17.2.1  2004/07/30 16:14:30  kurt
 | 
						|
 * icc_read: all free statements in the error case removed
 | 
						|
 *           (because of program crash in icc_delete)
 | 
						|
 * icc_delete: more security checks
 | 
						|
 * new public function: icc_get_errmsg
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
/*
 | 
						|
 * International Color Consortium Format Library (icclib)
 | 
						|
 * For ICC profile version 3.4
 | 
						|
 *
 | 
						|
 * Author:  Graeme W. Gill
 | 
						|
 * Date:    2002/04/22
 | 
						|
 * Version: 2.02
 | 
						|
 *
 | 
						|
 * Copyright 1997 - 2002 Graeme W. Gill
 | 
						|
 * See Licence.txt file for conditions of use.
 | 
						|
 */
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <stdarg.h>
 | 
						|
#include <string.h>
 | 
						|
#include <ctype.h>
 | 
						|
#include <math.h>
 | 
						|
#ifdef __sun
 | 
						|
#include <unistd.h>
 | 
						|
#endif
 | 
						|
#if defined(__IBMC__) && defined(_M_IX86)
 | 
						|
#include <float.h>
 | 
						|
#endif
 | 
						|
 | 
						|
/* PDFlib */
 | 
						|
#include "pc_util.h"
 | 
						|
#include "pc_core.h"
 |