• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // 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 
10 namespace bsdiff {
11 
12 int64_t ParseInt64(const uint8_t* buf);
13 
14 }  // namespace bsdiff
15 
16 #endif
17