source: git/src/useful.c @ 53496ab3

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since 53496ab3 was e02a6a6, checked in by Olly Betts <olly@…>, 14 years ago

configure.in,src/: Define GETC() in config.h and use it everywhere.
Similarly define PUTC() to use putc_unlocked() where available and
use that everywhere too.

git-svn-id: file:///home/survex-svn/survex/trunk@3550 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[421b7d2]1/* useful.c
[7e5d688]2 * Copyright (C) 1993-2001,2003,2010 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
[a420b49]19#ifdef HAVE_CONFIG_H
20# include <config.h>
21#endif
[d1b1380]22
23#include "useful.h"
24#include "osdepend.h"
25
[5dd874a]26#ifdef WORDS_BIGENDIAN
[d1b1380]27
[9965b2b]28extern void
[8c45eea]29useful_put16(int16_t w, FILE *fh)
[a420b49]30{
[e02a6a6]31   PUTC((char)(w), fh);
32   PUTC((char)(w >> 8l), fh);
[d1b1380]33}
34
[9965b2b]35extern void
[8c45eea]36useful_put32(int32_t w, FILE *fh)
[a420b49]37{
[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{
[8c45eea]47   int16_t w;
[19f2b4f]48   w = GETC(fh);
49   w |= (int16_t)(GETC(fh) << 8l);
[d1b1380]50   return w;
51}
52
[9965b2b]53extern int32_t
[a420b49]54useful_get32(FILE *fh)
55{
[8c45eea]56   int32_t w;
[19f2b4f]57   w = GETC(fh);
58   w |= (int32_t)(GETC(fh) << 8l);
59   w |= (int32_t)(GETC(fh) << 16l);
60   w |= (int32_t)(GETC(fh) << 24l);
[d1b1380]61   return w;
62}
63#endif
Note: See TracBrowser for help on using the repository browser.