15 lines
178 B
C
15 lines
178 B
C
#include <u.h>
|
|
#include <sys/stat.h>
|
|
#include <libc.h>
|
|
#include <draw.h>
|
|
|
|
vlong
|
|
_drawflength(int fd)
|
|
{
|
|
struct stat s;
|
|
|
|
if(fstat(fd, &s) < 0)
|
|
return -1;
|
|
return s.st_size;
|
|
}
|
|
|