| 1 | /* useful.c |
|---|
| 2 | * Copyright (C) 1993-2021 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 | #include <config.h> |
|---|
| 20 | |
|---|
| 21 | #include "useful.h" |
|---|
| 22 | #include "osdepend.h" |
|---|
| 23 | |
|---|
| 24 | #ifdef WORDS_BIGENDIAN |
|---|
| 25 | |
|---|
| 26 | extern void |
|---|
| 27 | useful_put16(int16_t word, FILE *fh) |
|---|
| 28 | { |
|---|
| 29 | uint16_t w = (uint16_t)word; |
|---|
| 30 | PUTC((char)(w), fh); |
|---|
| 31 | PUTC((char)(w >> 8l), fh); |
|---|
| 32 | } |
|---|
| 33 | |
|---|
| 34 | extern void |
|---|
| 35 | useful_put32(int32_t word, FILE *fh) |
|---|
| 36 | { |
|---|
| 37 | uint32_t w = (uint32_t)word; |
|---|
| 38 | PUTC((char)(w), fh); |
|---|
| 39 | PUTC((char)(w >> 8l), fh); |
|---|
| 40 | PUTC((char)(w >> 16l), fh); |
|---|
| 41 | PUTC((char)(w >> 24l), fh); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | extern int16_t |
|---|
| 45 | useful_get16(FILE *fh) |
|---|
| 46 | { |
|---|
| 47 | uint16_t w; |
|---|
| 48 | w = GETC(fh); |
|---|
| 49 | w |= (uint16_t)(GETC(fh) << 8l); |
|---|
| 50 | return (int16_t)w; |
|---|
| 51 | } |
|---|
| 52 | |
|---|
| 53 | extern int32_t |
|---|
| 54 | useful_get32(FILE *fh) |
|---|
| 55 | { |
|---|
| 56 | uint32_t w; |
|---|
| 57 | w = GETC(fh); |
|---|
| 58 | w |= (uint32_t)(GETC(fh) << 8l); |
|---|
| 59 | w |= (uint32_t)(GETC(fh) << 16l); |
|---|
| 60 | w |= (uint32_t)(GETC(fh) << 24l); |
|---|
| 61 | return (int32_t)w; |
|---|
| 62 | } |
|---|
| 63 | #endif |
|---|