blob: 1ee57c7acbbf5a7737d56ceb9523bc6be95a191b [file] [log] [blame]
Tianjie Xu65288122017-10-13 15:10:58 -07001// Copyright 2017 The Chromium OS 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 _BSDIFF_UTILS_H_
6#define _BSDIFF_UTILS_H_
7
8#include <stdint.h>
9
10namespace bsdiff {
11
12int64_t ParseInt64(const uint8_t* buf);
13
14} // namespace bsdiff
15
16#endif