source: git/src/useful.c @ b3b0900

faster-cavernloglog-selectwalls-datawalls-data-hanging-as-warning
Last change on this file since b3b0900 was 4c83f84, checked in by Olly Betts <olly@…>, 4 weeks ago

Don't check HAVE_CONFIG_H in most cases

This check is only useful for img.c, which is intended to be usable
outside of Survex (and had fallbacks for functions which may not be
available which will get used if built in a non-autotools project).
For all the other source files it's just useless boilerplate.

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[421b7d2]1/* useful.c
[136cff2]2 * Copyright (C) 1993-2021 Olly Betts
[846746e]3 *
[89231c4]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.
[846746e]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
[89231c4]11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
[846746e]13 *
[89231c4]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
[ecbc6c18]16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
[d1b1380]17 */
18
[4c83f84]19#include <config.h>
[d1b1380]20
21#include "useful.h"
[7dbc68f]22#include "osdepend.h"
[d1b1380]23
[5dd874a]24#ifdef WORDS_BIGENDIAN
[d1b1380]25
[9965b2b]26extern void
[136cff2]27useful_put16(int16_t word, FILE *fh)
[a420b49]28{
[136cff2]29   uint16_t w = (uint16_t)word;
[e02a6a6]30   PUTC((char)(w), fh);
31   PUTC((char)(w >> 8l), fh);
[d1b1380]32}
33
[9965b2b]34extern void
[136cff2]35useful_put32(int32_t word, FILE *fh)
[a420b49]36{
[136cff2]37   uint32_t w = (uint32_t)word;
[e02a6a6]38   PUTC((char)(w), fh);
39   PUTC((char)(w >> 8l), fh);
40   PUTC((char)(w >> 16l), fh);
41   PUTC((char)(w >> 24l), fh);
[d1b1380]42}
43
[9965b2b]44extern int16_t
[a420b49]45useful_get16(FILE *fh)
46{
[136cff2]47   uint16_t w;
[19f2b4f]48   w = GETC(fh);
[136cff2]49   w |= (uint16_t)(GETC(fh) << 8l);
50   return (int16_t)w;
[d1b1380]51}
52
[9965b2b]53extern int32_t
[a420b49]54useful_get32(FILE *fh)
55{
[136cff2]56   uint32_t w;
[19f2b4f]57   w = GETC(fh);
[136cff2]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;
[d1b1380]62}
63#endif
Note: See TracBrowser for help on using the repository browser.