Doxygen Source Code Documentation
all.h
Go to the documentation of this file.00001 /*===========================================================================* 00002 * all.h * 00003 * * 00004 * stuff included from ALL source files * 00005 * * 00006 *===========================================================================*/ 00007 00008 /* 00009 * Copyright (c) 1995 The Regents of the University of California. 00010 * All rights reserved. 00011 * 00012 * Permission to use, copy, modify, and distribute this software and its 00013 * documentation for any purpose, without fee, and without written agreement is 00014 * hereby granted, provided that the above copyright notice and the following 00015 * two paragraphs appear in all copies of this software. 00016 * 00017 * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR 00018 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT 00019 * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF 00020 * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00021 * 00022 * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, 00023 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 00024 * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS 00025 * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO 00026 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 00027 */ 00028 00029 /* 00030 * $Header: /misc/elrond0/share/cvs/AFNI/src/mpeg_encodedir/headers/all.h,v 1.5 2004/04/02 15:12:41 rwcox Exp $ 00031 * $Log: all.h,v $ 00032 * Revision 1.5 2004/04/02 15:12:41 rwcox 00033 * Cput 00034 * 00035 * Revision 1.4 2004/02/05 21:32:23 rwcox 00036 * Cput 00037 * 00038 * Revision 1.3 2003/12/23 13:50:08 rwcox 00039 * Cput 00040 * 00041 * Revision 1.2 2003/12/03 14:46:15 rwcox 00042 * Cput 00043 * 00044 * Revision 1.1 2001/12/17 18:25:44 rwcox 00045 * Cadd 00046 * 00047 * Revision 1.9 1995/06/05 21:11:06 smoot 00048 * added little_endian force for irizx 00049 * 00050 * Revision 1.8 1995/02/02 22:02:18 smoot 00051 * added ifdefs for compatability on stranger and stranger architectures... 00052 * 00053 * Revision 1.7 1995/02/02 07:26:45 eyhung 00054 * added parens to all.h to remove compiler warning 00055 * 00056 * Revision 1.6 1995/02/02 01:47:11 eyhung 00057 * added MAXINT 00058 * 00059 * Revision 1.5 1995/01/19 23:54:33 eyhung 00060 * Changed copyrights 00061 * 00062 * Revision 1.4 1994/11/14 22:52:04 smoot 00063 * Added linux #include for time.h 00064 * 00065 * Revision 1.3 1994/11/12 02:12:13 keving 00066 * nothing 00067 * 00068 * Revision 1.2 1993/07/22 22:24:23 keving 00069 * nothing 00070 * 00071 * Revision 1.1 1993/07/09 00:17:23 keving 00072 * nothing 00073 * 00074 */ 00075 00076 00077 #ifndef ENCODE_ALL_INCLUDED 00078 #define ENCODE_ALL_INCLUDED 00079 00080 #include <stdio.h> 00081 #include <stdlib.h> 00082 #include <math.h> 00083 #include <memory.h> 00084 #include <limits.h> 00085 00086 /* There's got to be a better way.... */ 00087 #ifdef LINUX 00088 #include <time.h> 00089 #endif 00090 #ifdef MIPS 00091 #include <time.h> 00092 #endif 00093 #ifdef IRIX 00094 #define FORCE_LITTLE_ENDIAN 00095 #include <time.h> 00096 #endif 00097 00098 #include "libpnmrw.h" 00099 #include "ansi.h" 00100 #include "general.h" 00101 00102 /* some machines have #define index strchr; get rid of this nonsense */ 00103 #ifdef index 00104 #undef index 00105 #endif /* index */ 00106 00107 #ifndef MAXINT 00108 #define MAXINT 0x7fffffff 00109 #endif 00110 00111 #endif /* ENCODE_ALL_INCLUDED */