2 * Copyright (C) 1993-2021 Olly Betts
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.
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.
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
26 #ifdef WORDS_BIGENDIAN
29 useful_put16(int16_t word
, FILE *fh
)
31 uint16_t w
= (uint16_t)word
;
33 PUTC((char)(w
>> 8l), fh
);
37 useful_put32(int32_t word
, FILE *fh
)
39 uint32_t w
= (uint32_t)word
;
41 PUTC((char)(w
>> 8l), fh
);
42 PUTC((char)(w
>> 16l), fh
);
43 PUTC((char)(w
>> 24l), fh
);
47 useful_get16(FILE *fh
)
51 w
|= (uint16_t)(GETC(fh
) << 8l);
56 useful_get32(FILE *fh
)
60 w
|= (uint32_t)(GETC(fh
) << 8l);
61 w
|= (uint32_t)(GETC(fh
) << 16l);
62 w
|= (uint32_t)(GETC(fh
) << 24l);