Home | History | Annotate | Download | only in bsdiff
      1 // Copyright 2015 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_BSPATCH_H_
      6 #define _BSDIFF_BSPATCH_H_
      7 
      8 namespace bsdiff {
      9 
     10 int bspatch(const char* old_filename,
     11             const char* new_filename,
     12             const char* patch_filename,
     13             const char* old_extents,
     14             const char* new_extents);
     15 
     16 }  // namespace bsdiff
     17 
     18 #endif  // _BSDIFF_BSPATCH_H_
     19