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_BSDIFF_H_ 6 #define _BSDIFF_BSDIFF_H_ 7 8 namespace bsdiff { 9 10 int bsdiff(const char* old_filename, 11 const char* new_filename, 12 const char* patch_filename); 13 14 } // namespace bsdiff 15 16 #endif // _BSDIFF_BSDIFF_H_ 17