X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Freadwrite.c;h=40fc63f0a5feb5c8f210e3c06a0060400cb80ab2;hb=7296e69def0d5744e3fe4b8899294cfd7fa18671;hp=9f089ea34da821394313b4b81835f5e10ed158c0;hpb=2653efdf1ee13bae3357e0c2964b77588d95b27b;p=plomrogue diff --git a/src/readwrite.c b/src/readwrite.c index 9f089ea..40fc63f 100644 --- a/src/readwrite.c +++ b/src/readwrite.c @@ -1,37 +1,45 @@ -#include -#include -#include - -static const uint16_t uchar_s = UCHAR_MAX + 1; - -extern uint16_t read_uint16_bigendian(FILE * file) { -// Read uint16 from file in big-endian order. - unsigned char a = fgetc(file); - unsigned char b = fgetc(file); - return (a * uchar_s) + b; } - -extern void write_uint16_bigendian(uint16_t x, FILE * file) { -// Write uint16 to file in beg-endian order. - unsigned char a = x / uchar_s; - unsigned char b = x % uchar_s; - fputc(a, file); - fputc(b, file); } - -extern uint32_t read_uint32_bigendian(FILE * file) { -// Read uint32 from file in big-endian order. - unsigned char a = fgetc(file); - unsigned char b = fgetc(file); - unsigned char c = fgetc(file); - unsigned char d = fgetc(file); - return (a * uchar_s * uchar_s * uchar_s) + (b * uchar_s * uchar_s) + (c * uchar_s) + d; } - -extern void write_uint32_bigendian(uint32_t x, FILE * file) { -// Write uint32 to file in beg-endian order. - unsigned char a = x / (uchar_s * uchar_s * uchar_s); - unsigned char b = (x - (a * uchar_s * uchar_s * uchar_s)) / (uchar_s * uchar_s); - unsigned char c = (x - ((a * uchar_s * uchar_s * uchar_s) + (b * uchar_s * uchar_s))) / uchar_s; - unsigned char d = x % uchar_s; - fputc(a, file); - fputc(b, file); - fputc(c, file); - fputc(d, file); } +/* readwrite.c */ + +#include "readwrite.h" +#include /* for FILE typedef*/ +#include /* for uint16_t, uint32_t */ + + + +extern uint16_t read_uint16_bigendian(FILE * file) +{ + uint16_t x; + x = (uint16_t) fgetc(file) << 8; + x = x + (uint16_t) fgetc(file); + return x; +} + + + +extern uint32_t read_uint32_bigendian(FILE * file) +{ + uint32_t x; + x = (uint32_t) fgetc(file) << 24; + x = x + ( (uint32_t) fgetc(file) << 16 ); + x = x + ( (uint32_t) fgetc(file) << 8 ); + x = x + (uint32_t) fgetc(file); + return x; +} + + + +extern void write_uint16_bigendian(uint16_t x, FILE * file) +{ + fputc( x >> 8, file ); + fputc( x & 0xFF, file ); +} + + + +extern void write_uint32_bigendian(uint32_t x, FILE * file) +{ + fputc( x >> 24, file); + fputc( ( x >> 16 ) & 0xFF, file); + fputc( ( x >> 8 ) & 0xFF, file); + fputc( x & 0xFF, file); +}