xref: /original-bsd/sys/stand/ufs.h (revision 3705696b)
1 /*-
2  * Copyright (c) 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)ufs.h	8.1 (Berkeley) 06/11/93
8  */
9 
10 int	ufs_open __P((char *path, struct open_file *f));
11 int	ufs_close __P((struct open_file *f));
12 int	ufs_read __P((struct open_file *f, char *buf,
13 		u_int size, u_int *resid));
14 int	ufs_write __P((struct open_file *f, char *buf,
15 		u_int size, u_int *resid));
16 off_t	ufs_seek __P((struct open_file *f, off_t offset, int where));
17 int	ufs_stat __P((struct open_file *f, struct stat *sb));
18