47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
**
** Given two input files, create and output a delta that carries
** the first file into the second.
*/
void delta_create_cmd(void){
Blob orig, target, delta;
if( g.argc!=5 ){
fprintf(stderr,"Usage: %s %s ORIGIN TARGET DELTA\n", g.argv[0], g.argv[1]);
fossil_exit(1);
}
if( blob_read_from_file(&orig, g.argv[2])<0 ){
fprintf(stderr,"cannot read %s\n", g.argv[2]);
fossil_exit(1);
}
if( blob_read_from_file(&target, g.argv[3])<0 ){
fprintf(stderr,"cannot read %s\n", g.argv[3]);
|
|
<
|
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
**
** Given two input files, create and output a delta that carries
** the first file into the second.
*/
void delta_create_cmd(void){
Blob orig, target, delta;
if( g.argc!=5 ){
usage("ORIGIN TARGET DELTA");
}
if( blob_read_from_file(&orig, g.argv[2])<0 ){
fprintf(stderr,"cannot read %s\n", g.argv[2]);
fossil_exit(1);
}
if( blob_read_from_file(&target, g.argv[3])<0 ){
fprintf(stderr,"cannot read %s\n", g.argv[3]);
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
**
** Given an input files and a delta, apply the delta to the input file
** and write the result.
*/
void delta_apply_cmd(void){
Blob orig, target, delta;
if( g.argc!=5 ){
fprintf(stderr,"Usage: %s %s ORIGIN DELTA TARGET\n", g.argv[0], g.argv[1]);
fossil_exit(1);
}
if( blob_read_from_file(&orig, g.argv[2])<0 ){
fprintf(stderr,"cannot read %s\n", g.argv[2]);
fossil_exit(1);
}
if( blob_read_from_file(&delta, g.argv[3])<0 ){
fprintf(stderr,"cannot read %s\n", g.argv[3]);
|
|
<
|
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
**
** Given an input files and a delta, apply the delta to the input file
** and write the result.
*/
void delta_apply_cmd(void){
Blob orig, target, delta;
if( g.argc!=5 ){
usage("ORIGIN DELTA TARGET");
}
if( blob_read_from_file(&orig, g.argv[2])<0 ){
fprintf(stderr,"cannot read %s\n", g.argv[2]);
fossil_exit(1);
}
if( blob_read_from_file(&delta, g.argv[3])<0 ){
fprintf(stderr,"cannot read %s\n", g.argv[3]);
|