blob: d25d2fde8da13695b9d72ff0f0a1382c22205120 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $OpenBSD: rawfs.h,v 1.2 2002/03/14 01:26:40 millert Exp $ */
/*
* Raw file system - for stream devices like tapes.
* No random access, only sequential read allowed.
*/
int rawfs_open(char *path, struct open_file *f);
int rawfs_close(struct open_file *f);
int rawfs_read(struct open_file *f, void *buf,
u_int size, u_int *resid);
int rawfs_write(struct open_file *f, void *buf,
u_int size, u_int *resid);
off_t rawfs_seek(struct open_file *f, off_t offset, int where);
int rawfs_stat(struct open_file *f, struct stat *sb);
|