source: git/src/useful.c @ 7e5d688

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 7e5d688 was 7e5d688, checked in by Olly Betts <olly@…>, 14 years ago

src/useful.c: Remove commented out code.

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

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/* useful.c
2 * Copyright (C) 1993-2001,2003,2010 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 */
29int16_t useful_w16;
30int32_t useful_w32;
31
32#else
33
34extern void Far
35useful_put16(int16_t w, FILE *fh)
36{
37   putc((char)(w), fh);
38   putc((char)(w >> 8l), fh);
39}
40
41extern void Far
42useful_put32(int32_t w, FILE *fh)
43{
44   putc((char)(w), fh);
45   putc((char)(w >> 8l), fh);
46   putc((char)(w >> 16l), fh);
47   putc((char)(w >> 24l), fh);
48}
49
50extern int16_t Far
51useful_get16(FILE *fh)
52{
53   int16_t w;
54   w = getc(fh);
55   w |= (int16_t)(getc(fh) << 8l);
56   return w;
57}
58
59extern int32_t Far
60useful_get32(FILE *fh)
61{
62   int32_t w;
63   w = getc(fh);
64   w |= (int32_t)(getc(fh) << 8l);
65   w |= (int32_t)(getc(fh) << 16l);
66   w |= (int32_t)(getc(fh) << 24l);
67   return w;
68}
69#endif
Note: See TracBrowser for help on using the repository browser.