blob: d86eac48d34af00bb21e415752e7b5319281467c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $OpenBSD: rawfs.h,v 1.3 2006/01/18 14:15:12 deraadt Exp $ */
/* $NetBSD: rawfs.h,v 1.1 1996/06/26 17:44:36 thorpej 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,
size_t size, size_t *resid);
int rawfs_write(struct open_file *f, void *buf,
size_t size, size_t *resid);
off_t rawfs_seek(struct open_file *f, off_t offset, int where);
int rawfs_stat(struct open_file *f, struct stat *sb);
|