| 1 | /* useful.c |
|---|
| 2 | * Copyright (C) 1993-2001,2003 Olly Betts |
|---|
| 3 | * |
|---|
| 4 | * This program is free software; you can redistribute it and/or modify |
|---|
| 5 | * it under the terms of the GNU General Public License as published by |
|---|
| 6 | * the Free Software Foundation; either version 2 of the License, or |
|---|
| 7 | * (at your option) any later version. |
|---|
| 8 | * |
|---|
| 9 | * This program is distributed in the hope that it will be useful, |
|---|
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 12 | * GNU General Public License for more details. |
|---|
| 13 | * |
|---|
| 14 | * You should have received a copy of the GNU General Public License |
|---|
| 15 | * along with this program; if not, write to the Free Software |
|---|
| 16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 17 | */ |
|---|
| 18 | |
|---|
| 19 | #ifdef HAVE_CONFIG_H |
|---|
| 20 | # include <config.h> |
|---|
| 21 | #endif |
|---|
| 22 | |
|---|
| 23 | #include "useful.h" |
|---|
| 24 | #include "osdepend.h" |
|---|
| 25 | |
|---|
| 26 | #ifndef WORDS_BIGENDIAN |
|---|
| 27 | |
|---|
| 28 | /* used by macro versions of useful_get<nn> functions */ |
|---|
| 29 | int16_t useful_w16; |
|---|
| 30 | int32_t useful_w32; |
|---|
| 31 | |
|---|
| 32 | #if 0 /* these functions aren't needed - macros do the job */ |
|---|
| 33 | /* the numbers in the file are little endian, so use fread/fwrite */ |
|---|
| 34 | extern void Far |
|---|
| 35 | useful_put16(int16_t w, FILE *fh) |
|---|
| 36 | { |
|---|
| 37 | fwrite(&w, 2, 1, fh); |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | #undef useful_put32 |
|---|
| 41 | extern void Far |
|---|
| 42 | useful_put32(int32_t w, FILE *fh) |
|---|
| 43 | { |
|---|
| 44 | fwrite(&w, 4, 1, fh); |
|---|
| 45 | } |
|---|
| 46 | |
|---|
| 47 | #undef useful_get16 |
|---|
| 48 | extern int16_t Far |
|---|
| 49 | useful_get16(FILE *fh) |
|---|
| 50 | { |
|---|
| 51 | int16_t w; |
|---|
| 52 | fread(&w, 2, 1, fh); |
|---|
| 53 | return w; |
|---|
| 54 | } |
|---|
| 55 | |
|---|
| 56 | #undef useful_put32 |
|---|
| 57 | extern int32_t Far |
|---|
| 58 | useful_get32(FILE *fh) |
|---|
| 59 | { |
|---|
| 60 | int32_t w; |
|---|
| 61 | fread(&w, 4, 1, fh); |
|---|
| 62 | return w; |
|---|
| 63 | } |
|---|
| 64 | #endif |
|---|
| 65 | |
|---|
| 66 | #else |
|---|
| 67 | |
|---|
| 68 | extern void Far |
|---|
| 69 | useful_put16(int16_t w, FILE *fh) |
|---|
| 70 | { |
|---|
| 71 | putc((char)(w), fh); |
|---|
| 72 | putc((char)(w >> 8l), fh); |
|---|
| 73 | } |
|---|
| 74 | |
|---|
| 75 | extern void Far |
|---|
| 76 | useful_put32(int32_t w, FILE *fh) |
|---|
| 77 | { |
|---|
| 78 | putc((char)(w), fh); |
|---|
| 79 | putc((char)(w >> 8l), fh); |
|---|
| 80 | putc((char)(w >> 16l), fh); |
|---|
| 81 | putc((char)(w >> 24l), fh); |
|---|
| 82 | } |
|---|
| 83 | |
|---|
| 84 | extern int16_t Far |
|---|
| 85 | useful_get16(FILE *fh) |
|---|
| 86 | { |
|---|
| 87 | int16_t w; |
|---|
| 88 | w = getc(fh); |
|---|
| 89 | w |= (int16_t)(getc(fh) << 8l); |
|---|
| 90 | return w; |
|---|
| 91 | } |
|---|
| 92 | |
|---|
| 93 | extern int32_t Far |
|---|
| 94 | useful_get32(FILE *fh) |
|---|
| 95 | { |
|---|
| 96 | int32_t w; |
|---|
| 97 | w = getc(fh); |
|---|
| 98 | w |= (int32_t)(getc(fh) << 8l); |
|---|
| 99 | w |= (int32_t)(getc(fh) << 16l); |
|---|
| 100 | w |= (int32_t)(getc(fh) << 24l); |
|---|
| 101 | return w; |
|---|
| 102 | } |
|---|
| 103 | #endif |
|---|