X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=bfile%2Fbfile.c;h=9f045aa662700fcc2b7b82c1e28462477f9d662e;hb=2a9e7dce6dcc0b206b3b5df4f7d3e4fb3ade3bfa;hp=dd10b4fd868cd178c02ebff81005f2259c974b9b;hpb=83f7d8e05b21112744575aece533b2bc62610f2a;p=idzebra-moved-to-github.git diff --git a/bfile/bfile.c b/bfile/bfile.c index dd10b4f..9f045aa 100644 --- a/bfile/bfile.c +++ b/bfile/bfile.c @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: bfile.c,v $ - * Revision 1.8 1994-08-23 15:03:34 quinn + * Revision 1.10 1994-08-25 10:15:54 quinn + * Trivial + * + * Revision 1.9 1994/08/24 08:45:48 quinn + * Using mfile. + * + * Revision 1.8 1994/08/23 15:03:34 quinn * *** empty log message *** * * Revision 1.7 1994/08/23 14:25:45 quinn @@ -36,7 +42,7 @@ int bf_close (BFile bf) { - close(bf->fd); + mf_close(bf->mf); xfree(bf); return(0); } @@ -45,23 +51,20 @@ BFile bf_open (const char *name, int block_size, int wflag) { BFile tmp = xmalloc(sizeof(BFile_struct)); - if ((tmp->fd = open(name, wflag ? O_RDWR|O_CREAT : O_RDONLY, 0666)) < 0) + if (!(tmp->mf = mf_open(0, name, block_size, wflag))) { - log(LOG_FATAL|LOG_ERRNO, "open %s", name); + log(LOG_FATAL, "Mfopen failed for %s", name); return(0); } - tmp->block_size = block_size; return(tmp); } int bf_read (BFile bf, int no, int offset, int num, void *buf) { - lseek(bf->fd, no * bf->block_size + offset, 0); - return(read(bf->fd, buf, num ? num : bf->block_size)); + return mf_read(bf->mf, no, offset, num, buf); } int bf_write (BFile bf, int no, int offset, int num, const void *buf) { - lseek(bf->fd, no * bf->block_size + offset, 0); - return(write(bf->fd, buf, num ? num : bf->block_size)); + return mf_write(bf->mf, no, offset, num, buf); }