home · contact · privacy
Corrected indentation / line lengths.
[plomrogue] / src / readwrite.h
index a4b0973ea2d68e95d70c35a8e9888356d58661e4..a0c8dbabcfe9691dc3ea891c9232c1de3831dd46 100644 (file)
@@ -1,8 +1,18 @@
+/* readwrite.h:
+ *
+ * Routines for reading/writing multibyte data from/to files. They ensure a
+ * defined endianness.
+ */
+
 #ifndef READWRITE_H
 #define READWRITE_H
 
-#include <stdio.h>
-#include <stdint.h>
+
+
+#include <stdio.h> /* for FILE typedef */
+#include <stdint.h> /* for uint16_t, uint32_t */
+
+
 
 extern uint16_t read_uint16_bigendian(FILE * file);
 extern uint32_t read_uint32_bigendian(FILE * file);