author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 09 Apr 2004 06:33:49 +0000 | |
changeset 629 | b01a59827192 |
parent 578 | bff1af8455ca |
child 654 | c0ae01de361d |
permissions | -rw-r--r-- |
177 | 1 |
/** |
2 |
* PhysicsFS; a portable, flexible file i/o abstraction. |
|
3 |
* |
|
4 |
* Documentation is in physfs.h. It's verbose, honest. :) |
|
5 |
* |
|
6 |
* Please see the file LICENSE in the source's root directory. |
|
7 |
* |
|
8 |
* This file written by Ryan C. Gordon. |
|
9 |
*/ |
|
10 |
||
214
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
11 |
#if HAVE_CONFIG_H |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
12 |
# include <config.h> |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
13 |
#endif |
19846c18071b
Initial autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
201
diff
changeset
|
14 |
|
177 | 15 |
#include <stdio.h> |
16 |
#include <stdlib.h> |
|
321
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
17 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
18 |
#define __PHYSICSFS_INTERNAL__ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
19 |
#include "physfs_internal.h" |
177 | 20 |
|
21 |
/* The macros used to swap values */ |
|
22 |
/* Try to use superfast macros on systems that support them */ |
|
23 |
#ifdef linux |
|
24 |
#include <asm/byteorder.h> |
|
25 |
#ifdef __arch__swab16 |
|
26 |
#define PHYSFS_Swap16 __arch__swab16 |
|
27 |
#endif |
|
28 |
#ifdef __arch__swab32 |
|
29 |
#define PHYSFS_Swap32 __arch__swab32 |
|
30 |
#endif |
|
31 |
#endif /* linux */ |
|
201
7ea2ae5d1a6c
Patched to stop -ansi bitching.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
32 |
|
7ea2ae5d1a6c
Patched to stop -ansi bitching.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
33 |
#if (defined _MSC_VER) |
7ea2ae5d1a6c
Patched to stop -ansi bitching.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
34 |
#define __inline__ __inline |
7ea2ae5d1a6c
Patched to stop -ansi bitching.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
35 |
#endif |
7ea2ae5d1a6c
Patched to stop -ansi bitching.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
36 |
|
177 | 37 |
#ifndef PHYSFS_Swap16 |
201
7ea2ae5d1a6c
Patched to stop -ansi bitching.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
38 |
static __inline__ PHYSFS_uint16 PHYSFS_Swap16(PHYSFS_uint16 D) |
177 | 39 |
{ |
578
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
40 |
return((D<<8)|(D>>8)); |
177 | 41 |
} |
42 |
#endif |
|
43 |
#ifndef PHYSFS_Swap32 |
|
201
7ea2ae5d1a6c
Patched to stop -ansi bitching.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
44 |
static __inline__ PHYSFS_uint32 PHYSFS_Swap32(PHYSFS_uint32 D) |
177 | 45 |
{ |
578
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
46 |
return((D<<24)|((D<<8)&0x00FF0000)|((D>>8)&0x0000FF00)|(D>>24)); |
177 | 47 |
} |
48 |
#endif |
|
49 |
#ifndef PHYSFS_NO_64BIT_SUPPORT |
|
50 |
#ifndef PHYSFS_Swap64 |
|
201
7ea2ae5d1a6c
Patched to stop -ansi bitching.
Ryan C. Gordon <icculus@icculus.org>
parents:
194
diff
changeset
|
51 |
static __inline__ PHYSFS_uint64 PHYSFS_Swap64(PHYSFS_uint64 val) { |
578
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
52 |
PHYSFS_uint32 hi, lo; |
177 | 53 |
|
578
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
54 |
/* Separate into high and low 32-bit values and swap them */ |
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
55 |
lo = (PHYSFS_uint32)(val&0xFFFFFFFF); |
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
56 |
val >>= 32; |
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
57 |
hi = (PHYSFS_uint32)(val&0xFFFFFFFF); |
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
58 |
val = PHYSFS_Swap32(lo); |
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
59 |
val <<= 32; |
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
60 |
val |= PHYSFS_Swap32(hi); |
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
61 |
return(val); |
177 | 62 |
} |
63 |
#endif |
|
64 |
#else |
|
65 |
#ifndef PHYSFS_Swap64 |
|
66 |
/* This is mainly to keep compilers from complaining in PHYSFS code. |
|
67 |
If there is no real 64-bit datatype, then compilers will complain about |
|
68 |
the fake 64-bit datatype that PHYSFS provides when it compiles user code. |
|
69 |
*/ |
|
578
bff1af8455ca
Tabs-to-spaces patch by James Turk.
Ryan C. Gordon <icculus@icculus.org>
parents:
566
diff
changeset
|
70 |
#define PHYSFS_Swap64(X) (X) |
177 | 71 |
#endif |
72 |
#endif /* PHYSFS_NO_64BIT_SUPPORT */ |
|
73 |
||
74 |
||
75 |
/* Byteswap item from the specified endianness to the native endianness */ |
|
76 |
#if PHYSFS_BYTEORDER == PHYSFS_LIL_ENDIAN |
|
77 |
PHYSFS_uint16 PHYSFS_swapULE16(PHYSFS_uint16 x) { return(x); } |
|
78 |
PHYSFS_sint16 PHYSFS_swapSLE16(PHYSFS_sint16 x) { return(x); } |
|
79 |
PHYSFS_uint32 PHYSFS_swapULE32(PHYSFS_uint32 x) { return(x); } |
|
80 |
PHYSFS_sint32 PHYSFS_swapSLE32(PHYSFS_sint32 x) { return(x); } |
|
81 |
PHYSFS_uint64 PHYSFS_swapULE64(PHYSFS_uint64 x) { return(x); } |
|
82 |
PHYSFS_sint64 PHYSFS_swapSLE64(PHYSFS_sint64 x) { return(x); } |
|
83 |
||
84 |
PHYSFS_uint16 PHYSFS_swapUBE16(PHYSFS_uint16 x) { return(PHYSFS_Swap16(x)); } |
|
85 |
PHYSFS_sint16 PHYSFS_swapSBE16(PHYSFS_sint16 x) { return(PHYSFS_Swap16(x)); } |
|
86 |
PHYSFS_uint32 PHYSFS_swapUBE32(PHYSFS_uint32 x) { return(PHYSFS_Swap32(x)); } |
|
87 |
PHYSFS_sint32 PHYSFS_swapSBE32(PHYSFS_sint32 x) { return(PHYSFS_Swap32(x)); } |
|
88 |
PHYSFS_uint64 PHYSFS_swapUBE64(PHYSFS_uint64 x) { return(PHYSFS_Swap64(x)); } |
|
89 |
PHYSFS_sint64 PHYSFS_swapSBE64(PHYSFS_sint64 x) { return(PHYSFS_Swap64(x)); } |
|
90 |
#else |
|
91 |
PHYSFS_uint16 PHYSFS_swapULE16(PHYSFS_uint16 x) { return(PHYSFS_Swap16(x)); } |
|
92 |
PHYSFS_sint16 PHYSFS_swapSLE16(PHYSFS_sint16 x) { return(PHYSFS_Swap16(x)); } |
|
93 |
PHYSFS_uint32 PHYSFS_swapULE32(PHYSFS_uint32 x) { return(PHYSFS_Swap32(x)); } |
|
94 |
PHYSFS_sint32 PHYSFS_swapSLE32(PHYSFS_sint32 x) { return(PHYSFS_Swap32(x)); } |
|
95 |
PHYSFS_uint64 PHYSFS_swapULE64(PHYSFS_uint64 x) { return(PHYSFS_Swap64(x)); } |
|
96 |
PHYSFS_sint64 PHYSFS_swapSLE64(PHYSFS_sint64 x) { return(PHYSFS_Swap64(x)); } |
|
97 |
||
98 |
PHYSFS_uint16 PHYSFS_swapUBE16(PHYSFS_uint16 x) { return(x); } |
|
99 |
PHYSFS_sint16 PHYSFS_swapSBE16(PHYSFS_sint16 x) { return(x); } |
|
100 |
PHYSFS_uint32 PHYSFS_swapUBE32(PHYSFS_uint32 x) { return(x); } |
|
101 |
PHYSFS_sint32 PHYSFS_swapSBE32(PHYSFS_sint32 x) { return(x); } |
|
102 |
PHYSFS_uint64 PHYSFS_swapUBE64(PHYSFS_uint64 x) { return(x); } |
|
103 |
PHYSFS_sint64 PHYSFS_swapSBE64(PHYSFS_sint64 x) { return(x); } |
|
104 |
#endif |
|
105 |
||
321
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
106 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
107 |
int PHYSFS_readSLE16(PHYSFS_file *file, PHYSFS_sint16 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
108 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
109 |
PHYSFS_sint16 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
110 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
111 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
112 |
*val = PHYSFS_swapSLE16(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
113 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
114 |
} /* PHYSFS_readSLE16 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
115 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
116 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
117 |
int PHYSFS_readULE16(PHYSFS_file *file, PHYSFS_uint16 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
118 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
119 |
PHYSFS_uint16 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
120 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
121 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
122 |
*val = PHYSFS_swapULE16(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
123 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
124 |
} /* PHYSFS_readULE16 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
125 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
126 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
127 |
int PHYSFS_readSBE16(PHYSFS_file *file, PHYSFS_sint16 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
128 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
129 |
PHYSFS_sint16 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
130 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
131 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
132 |
*val = PHYSFS_swapSBE16(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
133 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
134 |
} /* PHYSFS_readSBE16 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
135 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
136 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
137 |
int PHYSFS_readUBE16(PHYSFS_file *file, PHYSFS_uint16 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
138 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
139 |
PHYSFS_uint16 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
140 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
141 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
142 |
*val = PHYSFS_swapUBE16(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
143 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
144 |
} /* PHYSFS_readUBE16 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
145 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
146 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
147 |
int PHYSFS_readSLE32(PHYSFS_file *file, PHYSFS_sint32 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
148 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
149 |
PHYSFS_sint32 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
150 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
151 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
152 |
*val = PHYSFS_swapSLE32(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
153 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
154 |
} /* PHYSFS_readSLE32 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
155 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
156 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
157 |
int PHYSFS_readULE32(PHYSFS_file *file, PHYSFS_uint32 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
158 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
159 |
PHYSFS_uint32 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
160 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
161 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
162 |
*val = PHYSFS_swapULE32(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
163 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
164 |
} /* PHYSFS_readULE32 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
165 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
166 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
167 |
int PHYSFS_readSBE32(PHYSFS_file *file, PHYSFS_sint32 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
168 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
169 |
PHYSFS_sint32 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
170 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
171 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
172 |
*val = PHYSFS_swapSBE32(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
173 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
174 |
} /* PHYSFS_readSBE32 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
175 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
176 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
177 |
int PHYSFS_readUBE32(PHYSFS_file *file, PHYSFS_uint32 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
178 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
179 |
PHYSFS_uint32 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
180 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
181 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
182 |
*val = PHYSFS_swapUBE32(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
183 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
184 |
} /* PHYSFS_readUBE32 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
185 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
186 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
187 |
int PHYSFS_readSLE64(PHYSFS_file *file, PHYSFS_sint64 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
188 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
189 |
PHYSFS_sint64 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
190 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
191 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
192 |
*val = PHYSFS_swapSLE64(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
193 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
194 |
} /* PHYSFS_readSLE64 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
195 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
196 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
197 |
int PHYSFS_readULE64(PHYSFS_file *file, PHYSFS_uint64 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
198 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
199 |
PHYSFS_uint64 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
200 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
201 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
202 |
*val = PHYSFS_swapULE64(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
203 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
204 |
} /* PHYSFS_readULE64 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
205 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
206 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
207 |
int PHYSFS_readSBE64(PHYSFS_file *file, PHYSFS_sint64 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
208 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
209 |
PHYSFS_sint64 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
210 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
211 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
212 |
*val = PHYSFS_swapSBE64(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
213 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
214 |
} /* PHYSFS_readSBE64 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
215 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
216 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
217 |
int PHYSFS_readUBE64(PHYSFS_file *file, PHYSFS_uint64 *val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
218 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
219 |
PHYSFS_uint64 in; |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
220 |
BAIL_IF_MACRO(val == NULL, ERR_INVALID_ARGUMENT, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
221 |
BAIL_IF_MACRO(PHYSFS_read(file, &in, sizeof (in), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
222 |
*val = PHYSFS_swapUBE64(in); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
223 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
224 |
} /* PHYSFS_readUBE64 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
225 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
226 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
227 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
228 |
int PHYSFS_writeSLE16(PHYSFS_file *file, PHYSFS_sint16 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
229 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
230 |
PHYSFS_sint16 out = PHYSFS_swapSLE16(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
231 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
232 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
233 |
} /* PHYSFS_writeSLE16 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
234 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
235 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
236 |
int PHYSFS_writeULE16(PHYSFS_file *file, PHYSFS_uint16 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
237 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
238 |
PHYSFS_uint16 out = PHYSFS_swapULE16(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
239 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
240 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
241 |
} /* PHYSFS_writeULE16 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
242 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
243 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
244 |
int PHYSFS_writeSBE16(PHYSFS_file *file, PHYSFS_sint16 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
245 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
246 |
PHYSFS_sint16 out = PHYSFS_swapSBE16(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
247 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
248 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
249 |
} /* PHYSFS_writeSBE16 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
250 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
251 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
252 |
int PHYSFS_writeUBE16(PHYSFS_file *file, PHYSFS_uint16 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
253 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
254 |
PHYSFS_uint16 out = PHYSFS_swapUBE16(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
255 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
256 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
257 |
} /* PHYSFS_writeUBE16 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
258 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
259 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
260 |
int PHYSFS_writeSLE32(PHYSFS_file *file, PHYSFS_sint32 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
261 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
262 |
PHYSFS_sint32 out = PHYSFS_swapSLE32(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
263 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
264 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
265 |
} /* PHYSFS_writeSLE32 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
266 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
267 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
268 |
int PHYSFS_writeULE32(PHYSFS_file *file, PHYSFS_uint32 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
269 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
270 |
PHYSFS_uint32 out = PHYSFS_swapULE32(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
271 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
272 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
273 |
} /* PHYSFS_writeULE32 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
274 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
275 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
276 |
int PHYSFS_writeSBE32(PHYSFS_file *file, PHYSFS_sint32 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
277 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
278 |
PHYSFS_sint32 out = PHYSFS_swapSBE32(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
279 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
280 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
281 |
} /* PHYSFS_writeSBE32 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
282 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
283 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
284 |
int PHYSFS_writeUBE32(PHYSFS_file *file, PHYSFS_uint32 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
285 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
286 |
PHYSFS_uint32 out = PHYSFS_swapUBE32(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
287 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
288 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
289 |
} /* PHYSFS_writeUBE32 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
290 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
291 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
292 |
int PHYSFS_writeSLE64(PHYSFS_file *file, PHYSFS_sint64 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
293 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
294 |
PHYSFS_sint64 out = PHYSFS_swapSLE64(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
295 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
296 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
297 |
} /* PHYSFS_writeSLE64 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
298 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
299 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
300 |
int PHYSFS_writeULE64(PHYSFS_file *file, PHYSFS_uint64 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
301 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
302 |
PHYSFS_uint64 out = PHYSFS_swapULE64(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
303 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
304 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
305 |
} /* PHYSFS_writeULE64 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
306 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
307 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
308 |
int PHYSFS_writeSBE64(PHYSFS_file *file, PHYSFS_sint64 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
309 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
310 |
PHYSFS_sint64 out = PHYSFS_swapSBE64(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
311 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
312 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
313 |
} /* PHYSFS_writeSBE64 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
314 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
315 |
|
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
316 |
int PHYSFS_writeUBE64(PHYSFS_file *file, PHYSFS_uint64 val) |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
317 |
{ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
318 |
PHYSFS_uint64 out = PHYSFS_swapUBE64(val); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
319 |
BAIL_IF_MACRO(PHYSFS_write(file, &out, sizeof (out), 1) != 1, NULL, 0); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
320 |
return(1); |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
321 |
} /* PHYSFS_writeUBE64 */ |
50986060bee8
Added PHYSFS_(read|write)[SU][BL]E(16|32|64).
Ryan C. Gordon <icculus@icculus.org>
parents:
214
diff
changeset
|
322 |
|
177 | 323 |
/* end of physfs_byteorder.c ... */ |
324 |