ref: 209bca4f9dc212ccbfb49fb02c0d03625be8e362
dir: /sys/src/libbio/bbuffered.c/
#include <u.h>
#include <libc.h>
#include <bio.h>
int
Bbuffered(Biobufhdr *bp)
{
switch(bp->state) {
case Bracteof:
case Bractive:
return -bp->icount;
case Bwactive:
return bp->bsize + bp->ocount;
case Binactive:
return 0;
}
fprint(2, "Bbuffered: unknown state %d\n", bp->state);
return 0;
}