summaryrefslogtreecommitdiffstats
path: root/lib/libsqlite3/tool/extract.c
diff options
context:
space:
mode:
authorsthen <sthen@openbsd.org>2016-09-23 09:21:58 +0000
committersthen <sthen@openbsd.org>2016-09-23 09:21:58 +0000
commit25e4f8ab5acd0ef40feec6767a572bebbbe294b3 (patch)
tree20197c0e46bb6d260f4a310b6d5dd73b8d826f01 /lib/libsqlite3/tool/extract.c
parentremove usr.bin/sqlite3, it has moved back to ports (diff)
downloadwireguard-openbsd-25e4f8ab5acd0ef40feec6767a572bebbbe294b3.tar.xz
wireguard-openbsd-25e4f8ab5acd0ef40feec6767a572bebbbe294b3.zip
remove lib/libsqlite3, it has moved back to ports
Diffstat (limited to 'lib/libsqlite3/tool/extract.c')
-rw-r--r--lib/libsqlite3/tool/extract.c46
1 files changed, 0 insertions, 46 deletions
diff --git a/lib/libsqlite3/tool/extract.c b/lib/libsqlite3/tool/extract.c
deleted file mode 100644
index 5bf5caa31c9..00000000000
--- a/lib/libsqlite3/tool/extract.c
+++ /dev/null
@@ -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;
-}