mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
typo fix and whitespace.
This commit is contained in:
parent
e5d8781150
commit
8c2aa8f840
1 changed files with 6 additions and 9 deletions
|
@ -61,14 +61,14 @@ extern int (*LittleLong) (int l);
|
||||||
extern float (*BigFloat) (float l);
|
extern float (*BigFloat) (float l);
|
||||||
extern float (*LittleFloat) (float l);
|
extern float (*LittleFloat) (float l);
|
||||||
|
|
||||||
short ShortSwap (short l);
|
short ShortSwap (short l);
|
||||||
short ShortNoSwap (short l);
|
short ShortNoSwap (short l);
|
||||||
int LongSwap (int l);
|
int LongSwap (int l);
|
||||||
int LongNoSwap (int l);
|
int LongNoSwap (int l);
|
||||||
float FloatSwap (float f);
|
float FloatSwap (float f);
|
||||||
float FloatNoSwap (float f);
|
float FloatNoSwap (float f);
|
||||||
|
|
||||||
//NOTE: thes /always/ read and write /little/ endian entities.
|
// NOTE: these /always/ read and write /little/ endian entities.
|
||||||
struct VFile_s;
|
struct VFile_s;
|
||||||
void WriteFloat (struct VFile_s *file, float f);
|
void WriteFloat (struct VFile_s *file, float f);
|
||||||
void WriteByte (struct VFile_s *file, int b);
|
void WriteByte (struct VFile_s *file, int b);
|
||||||
|
@ -79,7 +79,4 @@ byte ReadByte (struct VFile_s *file);
|
||||||
unsigned short ReadShort (struct VFile_s *file);
|
unsigned short ReadShort (struct VFile_s *file);
|
||||||
unsigned long ReadLong (struct VFile_s *file);
|
unsigned long ReadLong (struct VFile_s *file);
|
||||||
|
|
||||||
|
|
||||||
//============================================================================
|
|
||||||
|
|
||||||
#endif // __qendian_h
|
#endif // __qendian_h
|
||||||
|
|
Loading…
Reference in a new issue