-
Notifications
You must be signed in to change notification settings - Fork 27
/
n.go
39 lines (38 loc) · 862 Bytes
/
n.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Package bsdiff is a pure Go implementation of Bsdiff 4.
//
// Example:
// package main
//
// import (
// "fmt"
// "bytes"
//
// "github.com/gabstv/go-bsdiff/pkg/bsdiff"
// "github.com/gabstv/go-bsdiff/pkg/bspatch"
// )
//
// func main(){
// // example files
// oldfile := []byte{0xfa, 0xdd, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff}
// newfile := []byte{0xfa, 0xdd, 0x00, 0x00, 0x00, 0xee, 0xee, 0x00, 0x00, 0xff, 0xfe, 0xfe}
//
// // generate a BSDIFF4 patch
// patch, err := bsdiff.Bytes(oldfile, newfile)
// if err != nil {
// panic(err)
// }
// fmt.Println(patch)
//
// // Apply a BSDIFF4 patch
// newfile2, err := bspatch.Bytes(oldfile, patch)
// if err != nil {
// panic(err)
// }
// if !bytes.Equal(newfile, newfile2) {
// panic()
// }
// }
package bsdiff
func v() int {
return 1
}