summaryrefslogtreecommitdiff
path: root/dviware/umddvi/previewers/texx2/mio.h
blob: cb2b84bfbf0b02b083c854a339d8bf3528575670 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 *	This program is Copyright (C) 1987 by the Board of Trustees of the
 *	University of Illinois, and by the author Dirk Grunwald.
 */

/*
 * Memory I/O: numbers.
 *
 */

#ifdef __STDC__

static 
inline int mGetByte(char **m)
{
    unsigned char foo = **m;
    unsigned int retval = foo & 0xff;
    (*m)++;
    return retval;
}

static 
inline void mGetWord( char **m, i32 *r)
{
    int x = mGetByte( m ) << 8;
    x |= mGetByte(m); 
    *r = x;
}

static 
inline void mGet3Byte( char **m, i32 *r)
{
    long x = mGetByte( m ) << 16;
    x |= ( mGetByte(m ) << 8 ); 
    x |= mGetByte(m);
    *r = x;
}

static 
inline void mGetLong( char **m, i32 *r)
{
    long x = mGetByte( m ) << 24;
    x |= ( mGetByte(m) << 16 ); 
    x |= ( mGetByte(m) << 8 ); 
    x |= mGetByte(m); 
    *r = x;
}

#else

#define	mGetByte(m)	( *((*m)++) & 0xff )

#define mGetWord(m, r)	{*(r)  = mGetByte(m) << 8;  *(r) |= mGetByte(m);}

#define mGet3Byte(m,r) {*(r)  = mGetByte(m) << 16;\
			 *(r) |= mGetByte(m) << 8;\
			 *(r) |= mGetByte(m);}

#define mGetLong(m, r)	{*(r)  = mGetByte(m) << 24;\
			 *(r) |= mGetByte(m) << 16;\
			 *(r) |= mGetByte(m) << 8;\
			 *(r) |= mGetByte(m);}

#endif