]> wimlib.net Git - wimlib/blobdiff - src/buffer_io.h
verify.c, buffer_io.h
[wimlib] / src / buffer_io.h
similarity index 96%
rename from src/io.h
rename to src/buffer_io.h
index 1a617e261d28bee11c6607e22ce278ceb641625b..9dd88a01a62a79bca07dacd41c80f1660ad763e5 100644 (file)
--- a/src/io.h
@@ -1,12 +1,12 @@
 /*
- * io.h
+ * buffer_io.h
  *
  * A few endianness-aware macros for reading and writing data from in-memory
  * buffers.
  */
 
-#ifndef _WIMLIB_IO_H
-#define _WIMLIB_IO_H
+#ifndef _WIMLIB_BUFFER_IO_H
+#define _WIMLIB_BUFFER_IO_H
 
 #include "util.h"
 #include "endianness.h"
@@ -117,4 +117,4 @@ static inline u8 *put_bytes(u8 *p, size_t num_bytes, const u8 *input)
 {
        return (u8*)memcpy(p, input, num_bytes) + num_bytes;
 }
-#endif /* _WIMLIB_IO_H */
+#endif /* _WIMLIB_BUFFER_IO_H */