mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-11 16:15:07 -04:00
9 lines
364 B
C
9 lines
364 B
C
/* $NetBSD: hfs.h,v 1.3 2005/12/11 12:18:06 christos Exp $ */
|
|
|
|
int hfs_open(const char *, struct open_file *);
|
|
int hfs_close(struct open_file *);
|
|
int hfs_read(struct open_file *, void *, size_t, size_t *);
|
|
int hfs_write(struct open_file *, void *, size_t, size_t *);
|
|
off_t hfs_seek(struct open_file *, off_t, int);
|
|
int hfs_stat(struct open_file *, struct stat *);
|