X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=src%2Freadwrite.c;h=cdee90bbecbc62027aa7a5b55fe14b7ed4842a6d;hb=ffc1419854e5166eef5ea07ed0fb5be53a1826f3;hp=fd520685a935f978584851feaaf69a51878de802;hpb=f743c2cc4451192d645e726654a48bd58a636cef;p=plomrogue diff --git a/src/readwrite.c b/src/readwrite.c index fd52068..cdee90b 100644 --- a/src/readwrite.c +++ b/src/readwrite.c @@ -1,35 +1,35 @@ +/* readwrite.c */ + +#include "readwrite.h" #include -#include #include -#define UCHARSIZE (UCHAR_MAX + 1) +#include -uint16_t read_uint16_bigendian(FILE * file) { -// Read uint16 from file in big-endian order. +static const uint16_t uchar_s = UCHAR_MAX + 1; + +extern uint16_t read_uint16_bigendian(FILE * file) { unsigned char a = fgetc(file); unsigned char b = fgetc(file); - return (a * UCHARSIZE) + b; } - -void write_uint16_bigendian(uint16_t x, FILE * file) { -// Write uint16 to file in beg-endian order. - unsigned char a = x / UCHARSIZE; - unsigned char b = x % UCHARSIZE; - fputc(a, file); - fputc(b, file); } + return (a * uchar_s) + b; } -uint32_t read_uint32_bigendian(FILE * file) { -// Read uint32 from file in big-endian order. +extern uint32_t read_uint32_bigendian(FILE * file) { unsigned char a = fgetc(file); unsigned char b = fgetc(file); unsigned char c = fgetc(file); unsigned char d = fgetc(file); - return (a * UCHARSIZE * UCHARSIZE * UCHARSIZE) + (b * UCHARSIZE * UCHARSIZE) + (c * UCHARSIZE) + d; } + return (a * uchar_s * uchar_s * uchar_s) + (b * uchar_s * uchar_s) + (c * uchar_s) + d; } + +extern void write_uint16_bigendian(uint16_t x, FILE * file) { + unsigned char a = x / uchar_s; + unsigned char b = x % uchar_s; + fputc(a, file); + fputc(b, file); } -void write_uint32_bigendian(uint32_t x, FILE * file) { -// Write uint32 to file in beg-endian order. - unsigned char a = x / (UCHARSIZE * UCHARSIZE * UCHARSIZE); - unsigned char b = (x - (a * UCHARSIZE * UCHARSIZE * UCHARSIZE)) / (UCHARSIZE * UCHARSIZE); - unsigned char c = (x - ((a * UCHARSIZE * UCHARSIZE * UCHARSIZE) + (b * UCHARSIZE * UCHARSIZE))) / UCHARSIZE; - unsigned char d = x % UCHARSIZE; +extern void write_uint32_bigendian(uint32_t x, FILE * file) { + 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);