MXS-2732 Rename sqlite-src-3110100 to sqlite-src-3110100.old

Originally, the sqlite installation was imported into the MaxScale
repository in the one gigantic MaxScale 1.4 -> 2.0 commit.

Consequently, there is no import commit to compare to if you want
to extract all MaxScale specific changes. To make it simpler in the
future, sqlite will now be imported in a commit of its own.
This commit is contained in:
Johan Wikman
2019-10-30 10:37:21 +02:00
parent 290d38c67f
commit 81e78726eb
497 changed files with 3 additions and 3 deletions

View File

@ -1,46 +0,0 @@
/*
** Extract a range of bytes from a file.
**
** Usage:
**
** extract FILENAME OFFSET AMOUNT
**
** The bytes are written to standard output.
*/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv){
FILE *f;
char *zBuf;
int ofst;
int n;
size_t got;
if( argc!=4 ){
fprintf(stderr, "Usage: %s FILENAME OFFSET AMOUNT\n", *argv);
return 1;
}
f = fopen(argv[1], "rb");
if( f==0 ){
fprintf(stderr, "cannot open \"%s\"\n", argv[1]);
return 1;
}
ofst = atoi(argv[2]);
n = atoi(argv[3]);
zBuf = malloc( n );
if( zBuf==0 ){
fprintf(stderr, "out of memory\n");
return 1;
}
fseek(f, ofst, SEEK_SET);
got = fread(zBuf, 1, n, f);
fclose(f);
if( got<n ){
fprintf(stderr, "got only %d of %d bytes\n", got, n);
return 1;
}else{
fwrite(zBuf, 1, n, stdout);
}
return 0;
}