Thomas G. Lane | 2cbeb8a | 1991-10-07 00:00:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * jinclude.h |
| 3 | * |
DRC | 5de454b | 2014-05-18 19:04:03 +0000 | [diff] [blame] | 4 | * This file was part of the Independent JPEG Group's software: |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 5 | * Copyright (C) 1991-1994, Thomas G. Lane. |
DRC | 5de454b | 2014-05-18 19:04:03 +0000 | [diff] [blame] | 6 | * It was modified by The libjpeg-turbo Project to include only code relevant |
| 7 | * to libjpeg-turbo. |
DRC | 7e3acc0 | 2015-10-10 10:25:46 -0500 | [diff] [blame] | 8 | * For conditions of distribution and use, see the accompanying README.ijg |
| 9 | * file. |
Thomas G. Lane | 2cbeb8a | 1991-10-07 00:00:00 +0000 | [diff] [blame] | 10 | * |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 11 | * This file exists to provide a single place to fix any problems with |
| 12 | * including the wrong system include files. (Common problems are taken |
| 13 | * care of by the standard jconfig symbols, but on really weird systems |
| 14 | * you may have to edit this file.) |
| 15 | * |
| 16 | * NOTE: this file is NOT intended to be included by applications using the |
| 17 | * JPEG library. Most applications need only include jpeglib.h. |
Thomas G. Lane | 2cbeb8a | 1991-10-07 00:00:00 +0000 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 21 | /* Include auto-config file to find out which system include files we need. */ |
| 22 | |
DRC | e5eaf37 | 2014-05-09 18:00:32 +0000 | [diff] [blame] | 23 | #include "jconfig.h" /* auto configuration options */ |
| 24 | #define JCONFIG_INCLUDED /* so that jpeglib.h doesn't do it again */ |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 25 | |
Thomas G. Lane | 2cbeb8a | 1991-10-07 00:00:00 +0000 | [diff] [blame] | 26 | /* |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 27 | * We need the NULL macro and size_t typedef. |
| 28 | * On an ANSI-conforming system it is sufficient to include <stddef.h>. |
| 29 | * Otherwise, we get them from <stdlib.h> or <stdio.h>; we may have to |
| 30 | * pull in <sys/types.h> as well. |
| 31 | * Note that the core JPEG library does not require <stdio.h>; |
| 32 | * only the default error handler and data source/destination modules do. |
| 33 | * But we must pull it in because of the references to FILE in jpeglib.h. |
| 34 | * You can remove those references if you want to compile without <stdio.h>. |
Thomas G. Lane | bd543f0 | 1991-12-13 00:00:00 +0000 | [diff] [blame] | 35 | */ |
| 36 | |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 37 | #ifdef HAVE_STDDEF_H |
| 38 | #include <stddef.h> |
Thomas G. Lane | bd543f0 | 1991-12-13 00:00:00 +0000 | [diff] [blame] | 39 | #endif |
| 40 | |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 41 | #ifdef HAVE_STDLIB_H |
| 42 | #include <stdlib.h> |
| 43 | #endif |
| 44 | |
| 45 | #ifdef NEED_SYS_TYPES_H |
| 46 | #include <sys/types.h> |
| 47 | #endif |
Thomas G. Lane | 2cbeb8a | 1991-10-07 00:00:00 +0000 | [diff] [blame] | 48 | |
| 49 | #include <stdio.h> |
| 50 | |
| 51 | /* |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 52 | * We need memory copying and zeroing functions, plus strncpy(). |
| 53 | * ANSI and System V implementations declare these in <string.h>. |
| 54 | * BSD doesn't have the mem() functions, but it does have bcopy()/bzero(). |
| 55 | * Some systems may declare memset and memcpy in <memory.h>. |
| 56 | * |
| 57 | * NOTE: we assume the size parameters to these functions are of type size_t. |
| 58 | * Change the casts in these macros if not! |
Thomas G. Lane | 2cbeb8a | 1991-10-07 00:00:00 +0000 | [diff] [blame] | 59 | */ |
| 60 | |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 61 | #ifdef NEED_BSD_STRINGS |
| 62 | |
| 63 | #include <strings.h> |
DRC | e5eaf37 | 2014-05-09 18:00:32 +0000 | [diff] [blame] | 64 | #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size)) |
| 65 | #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size)) |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 66 | |
| 67 | #else /* not BSD, assume ANSI/SysV string lib */ |
| 68 | |
| 69 | #include <string.h> |
DRC | e5eaf37 | 2014-05-09 18:00:32 +0000 | [diff] [blame] | 70 | #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size)) |
| 71 | #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size)) |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 72 | |
Thomas G. Lane | bd543f0 | 1991-12-13 00:00:00 +0000 | [diff] [blame] | 73 | #endif |
Thomas G. Lane | 2cbeb8a | 1991-10-07 00:00:00 +0000 | [diff] [blame] | 74 | |
| 75 | /* |
Thomas G. Lane | 36a4ccc | 1994-09-24 00:00:00 +0000 | [diff] [blame] | 76 | * The modules that use fread() and fwrite() always invoke them through |
| 77 | * these macros. On some systems you may need to twiddle the argument casts. |
Thomas G. Lane | bd543f0 | 1991-12-13 00:00:00 +0000 | [diff] [blame] | 78 | * CAUTION: argument order is different from underlying functions! |
| 79 | */ |
| 80 | |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 81 | #define JFREAD(file,buf,sizeofbuf) \ |
Thomas G. Lane | bd543f0 | 1991-12-13 00:00:00 +0000 | [diff] [blame] | 82 | ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file))) |
Thomas G. Lane | 4a6b730 | 1992-03-17 00:00:00 +0000 | [diff] [blame] | 83 | #define JFWRITE(file,buf,sizeofbuf) \ |
Thomas G. Lane | bd543f0 | 1991-12-13 00:00:00 +0000 | [diff] [blame] | 84 | ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file))) |