upgraded to the latest NetBSD version
[unix-history] / usr / src / sys / stand / ufs.h
CommitLineData
f6b71ac3 1/*-
80409bdc
KB
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
f6b71ac3
KM
4 *
5 * %sccs.include.redist.c%
6 *
80409bdc 7 * @(#)ufs.h 8.1 (Berkeley) %G%
f6b71ac3
KM
8 */
9
10int ufs_open __P((char *path, struct open_file *f));
11int ufs_close __P((struct open_file *f));
12int ufs_read __P((struct open_file *f, char *buf,
13 u_int size, u_int *resid));
14int ufs_write __P((struct open_file *f, char *buf,
15 u_int size, u_int *resid));
16off_t ufs_seek __P((struct open_file *f, off_t offset, int where));
17int ufs_stat __P((struct open_file *f, struct stat *sb));