xref: /csrg-svn/sys/stand/ufs.h (revision 63370)
163281Smckusick /*-
2*63370Sbostic  * Copyright (c) 1993
3*63370Sbostic  *	The Regents of the University of California.  All rights reserved.
463281Smckusick  *
563281Smckusick  * %sccs.include.redist.c%
663281Smckusick  *
7*63370Sbostic  *	@(#)ufs.h	8.1 (Berkeley) 06/11/93
863281Smckusick  */
963281Smckusick 
1063281Smckusick int	ufs_open __P((char *path, struct open_file *f));
1163281Smckusick int	ufs_close __P((struct open_file *f));
1263281Smckusick int	ufs_read __P((struct open_file *f, char *buf,
1363281Smckusick 		u_int size, u_int *resid));
1463281Smckusick int	ufs_write __P((struct open_file *f, char *buf,
1563281Smckusick 		u_int size, u_int *resid));
1663281Smckusick off_t	ufs_seek __P((struct open_file *f, off_t offset, int where));
1763281Smckusick int	ufs_stat __P((struct open_file *f, struct stat *sb));
18