dbf-halloween2015

annotate libs/libjpeg/jinclude.h @ 1:c3f5c32cb210

barfed all the libraries in the source tree to make porting easier
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 00:36:56 +0200
parents
children
rev   line source
nuclear@1 1 /*
nuclear@1 2 * jinclude.h
nuclear@1 3 *
nuclear@1 4 * Copyright (C) 1991-1994, Thomas G. Lane.
nuclear@1 5 * This file is part of the Independent JPEG Group's software.
nuclear@1 6 * For conditions of distribution and use, see the accompanying README file.
nuclear@1 7 *
nuclear@1 8 * This file exists to provide a single place to fix any problems with
nuclear@1 9 * including the wrong system include files. (Common problems are taken
nuclear@1 10 * care of by the standard jconfig symbols, but on really weird systems
nuclear@1 11 * you may have to edit this file.)
nuclear@1 12 *
nuclear@1 13 * NOTE: this file is NOT intended to be included by applications using the
nuclear@1 14 * JPEG library. Most applications need only include jpeglib.h.
nuclear@1 15 */
nuclear@1 16
nuclear@1 17
nuclear@1 18 /* Include auto-config file to find out which system include files we need. */
nuclear@1 19
nuclear@1 20 #include "jconfig.h" /* auto configuration options */
nuclear@1 21 #define JCONFIG_INCLUDED /* so that jpeglib.h doesn't do it again */
nuclear@1 22
nuclear@1 23 /*
nuclear@1 24 * We need the NULL macro and size_t typedef.
nuclear@1 25 * On an ANSI-conforming system it is sufficient to include <stddef.h>.
nuclear@1 26 * Otherwise, we get them from <stdlib.h> or <stdio.h>; we may have to
nuclear@1 27 * pull in <sys/types.h> as well.
nuclear@1 28 * Note that the core JPEG library does not require <stdio.h>;
nuclear@1 29 * only the default error handler and data source/destination modules do.
nuclear@1 30 * But we must pull it in because of the references to FILE in jpeglib.h.
nuclear@1 31 * You can remove those references if you want to compile without <stdio.h>.
nuclear@1 32 */
nuclear@1 33
nuclear@1 34 #ifdef HAVE_STDDEF_H
nuclear@1 35 #include <stddef.h>
nuclear@1 36 #endif
nuclear@1 37
nuclear@1 38 #ifdef HAVE_STDLIB_H
nuclear@1 39 #include <stdlib.h>
nuclear@1 40 #endif
nuclear@1 41
nuclear@1 42 #ifdef NEED_SYS_TYPES_H
nuclear@1 43 #include <sys/types.h>
nuclear@1 44 #endif
nuclear@1 45
nuclear@1 46 #include <stdio.h>
nuclear@1 47
nuclear@1 48 /*
nuclear@1 49 * We need memory copying and zeroing functions, plus strncpy().
nuclear@1 50 * ANSI and System V implementations declare these in <string.h>.
nuclear@1 51 * BSD doesn't have the mem() functions, but it does have bcopy()/bzero().
nuclear@1 52 * Some systems may declare memset and memcpy in <memory.h>.
nuclear@1 53 *
nuclear@1 54 * NOTE: we assume the size parameters to these functions are of type size_t.
nuclear@1 55 * Change the casts in these macros if not!
nuclear@1 56 */
nuclear@1 57
nuclear@1 58 #ifdef NEED_BSD_STRINGS
nuclear@1 59
nuclear@1 60 #include <strings.h>
nuclear@1 61 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
nuclear@1 62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
nuclear@1 63
nuclear@1 64 #else /* not BSD, assume ANSI/SysV string lib */
nuclear@1 65
nuclear@1 66 #include <string.h>
nuclear@1 67 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
nuclear@1 68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
nuclear@1 69
nuclear@1 70 #endif
nuclear@1 71
nuclear@1 72 /*
nuclear@1 73 * In ANSI C, and indeed any rational implementation, size_t is also the
nuclear@1 74 * type returned by sizeof(). However, it seems there are some irrational
nuclear@1 75 * implementations out there, in which sizeof() returns an int even though
nuclear@1 76 * size_t is defined as long or unsigned long. To ensure consistent results
nuclear@1 77 * we always use this SIZEOF() macro in place of using sizeof() directly.
nuclear@1 78 */
nuclear@1 79
nuclear@1 80 #define SIZEOF(object) ((size_t) sizeof(object))
nuclear@1 81
nuclear@1 82 /*
nuclear@1 83 * The modules that use fread() and fwrite() always invoke them through
nuclear@1 84 * these macros. On some systems you may need to twiddle the argument casts.
nuclear@1 85 * CAUTION: argument order is different from underlying functions!
nuclear@1 86 */
nuclear@1 87
nuclear@1 88 #define JFREAD(file,buf,sizeofbuf) \
nuclear@1 89 ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
nuclear@1 90 #define JFWRITE(file,buf,sizeofbuf) \
nuclear@1 91 ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))