Finish the port of the rsync algorithm to C

This commit is contained in:
Kovid Goyal
2023-07-18 18:45:24 +05:30
parent caa9c27554
commit b5498090df
3 changed files with 229 additions and 10 deletions

View File

@@ -27,3 +27,4 @@ class Patcher:
def signature_header(self, output: WriteBuffer) -> None: ...
def sign_block(self, block: ReadOnlyBuffer, output: WriteBuffer) -> None: ...
def apply_delta_data(self, data: ReadOnlyBuffer, read: Callable[[int, WriteBuffer], int], write: Callable[[ReadOnlyBuffer], None]) -> None: ...
def finish_delta_data(self) -> None: ...