home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_07 / v7n7084b.txt < prev    next >
Text File  |  1989-09-05  |  1KB  |  24 lines

  1.                        blkio Function Prototypes
  2.  
  3. void      bexit(int status);
  4. int       bclose(BLKFILE *bp);
  5. int       bflpop(BLKFILE *bp, bpos_t *bn_p);
  6. int       bflpush(BLKFILE *bp, bpos_t *bn_p);
  7. int       bflush(BLKFILE *bp);
  8. int       bgetb(BLKFILE *bp, bpos_t bn, void *buf);
  9. int       bgetbf(BLKFILE *bp, bpos_t bn, size_t offset, void *buf,
  10.                                                                 size_t bufsize);
  11. int       bgeth(BLKFILE *bp, void *buf);
  12. int       bgethf(BLKFILE *bp, size_t offset, void *buf, size_t bufsize);
  13. BLKFILE * bopen(char *filename, char *type, size_t hdrsize, size_t blksize,
  14.                                                                  size_t bufcnt);
  15. int       bputb(BLKFILE *bp, bpos_t bn, void *buf);
  16. int       bputbf(BLKFILE *bp, bpos_t bn, size_t offset, void *buf,
  17.                                                                 size_t bufsize);
  18. int       bputh(BLKFILE *bp, void *buf);
  19. int       bputhf(BLKFILE *bp, size_t offset, void *buf, size_t bufsize);
  20. int       bsetbuf(BLKFILE *bp, void *buf);
  21. int       bsetvbuf(BLKFILE *bp, void *buf, size_t blksize, size_t bufcnt);
  22. int       bsync(BLKFILE *bp);
  23.  
  24.