Run dos2unix on bayou and remove white space at the end of lines.
[coreboot.git] / payloads / bayou / util / pbuilder / lzma / C / Common / CRC.h
index c9d43d0055d33e3e7bb4ec314fff01d5a6877fde..f3279a5ef8ea9c53e751c3324521d44586f6a7cf 100644 (file)
@@ -1,36 +1,36 @@
-// Common/CRC.h\r
-\r
-#ifndef __COMMON_CRC_H\r
-#define __COMMON_CRC_H\r
-\r
-#include <stddef.h>\r
-#include "Types.h"\r
-\r
-class CCRC\r
-{\r
-  UInt32 _value;\r
-public:\r
-       static UInt32 Table[256];\r
-       static void InitTable();\r
-\r
-  CCRC():  _value(0xFFFFFFFF){};\r
-  void Init() { _value = 0xFFFFFFFF; }\r
-  void UpdateByte(Byte v);\r
-  void UpdateUInt16(UInt16 v);\r
-  void UpdateUInt32(UInt32 v);\r
-  void UpdateUInt64(UInt64 v);\r
-  void Update(const void *data, size_t size);\r
-  UInt32 GetDigest() const { return _value ^ 0xFFFFFFFF; } \r
-  static UInt32 CalculateDigest(const void *data, size_t size)\r
-  {\r
-    CCRC crc;\r
-    crc.Update(data, size);\r
-    return crc.GetDigest();\r
-  }\r
-  static bool VerifyDigest(UInt32 digest, const void *data, size_t size)\r
-  {\r
-    return (CalculateDigest(data, size) == digest);\r
-  }\r
-};\r
-\r
-#endif\r
+// Common/CRC.h
+
+#ifndef __COMMON_CRC_H
+#define __COMMON_CRC_H
+
+#include <stddef.h>
+#include "Types.h"
+
+class CCRC
+{
+  UInt32 _value;
+public:
+       static UInt32 Table[256];
+       static void InitTable();
+
+  CCRC():  _value(0xFFFFFFFF){};
+  void Init() { _value = 0xFFFFFFFF; }
+  void UpdateByte(Byte v);
+  void UpdateUInt16(UInt16 v);
+  void UpdateUInt32(UInt32 v);
+  void UpdateUInt64(UInt64 v);
+  void Update(const void *data, size_t size);
+  UInt32 GetDigest() const { return _value ^ 0xFFFFFFFF; }
+  static UInt32 CalculateDigest(const void *data, size_t size)
+  {
+    CCRC crc;
+    crc.Update(data, size);
+    return crc.GetDigest();
+  }
+  static bool VerifyDigest(UInt32 digest, const void *data, size_t size)
+  {
+    return (CalculateDigest(data, size) == digest);
+  }
+};
+
+#endif