X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;ds=sidebyside;f=src%2Freadwrite.c;h=761497021e1af9cce25cdd441f19cb1f9898e366;hb=bd82dfaa9bfeaae84690728554b43113e469904d;hp=34ec09beecb86d8ee1e06624163143ca8b71e617;hpb=b944d403e356e444b47b0f5768406c0527151be0;p=plomrogue diff --git a/src/readwrite.c b/src/readwrite.c index 34ec09b..7614970 100644 --- a/src/readwrite.c +++ b/src/readwrite.c @@ -11,13 +11,6 @@ extern uint16_t read_uint16_bigendian(FILE * 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); @@ -26,6 +19,13 @@ extern uint32_t read_uint32_bigendian(FILE * 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_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 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);