1 /* $OpenBSD: hfs.h,v 1.2 2015/03/14 20:52:41 miod Exp $ */ 2 /* $NetBSD: hfs.h,v 1.1 2000/11/14 11:25:35 tsubai Exp $ */ 3 4 int hfs_open(char *, struct open_file *); 5 int hfs_close(struct open_file *); 6 int hfs_read(struct open_file *, void *, size_t, size_t *); 7 int hfs_write(struct open_file *, void *, size_t, size_t *); 8 off_t hfs_seek(struct open_file *, off_t, int); 9 int hfs_stat(struct open_file *, struct stat *); 10 int hfs_readdir(struct open_file *, char *); 11