Enable dev build with the latest repo
[platform/framework/web/chromium-efl.git] / courgette / crc.h
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COURGETTE_CRC_H_
6 #define COURGETTE_CRC_H_
7
8 #include <stddef.h>
9 #include <stdint.h>
10
11 namespace courgette {
12
13 // Calculates Crc of the given buffer by calling CRC method in LZMA SDK
14 //
15 uint32_t CalculateCrc(const uint8_t* buffer, size_t size);
16
17 }  // namespace courgette
18 #endif  // COURGETTE_CRC_H_