Home | History | Annotate | Line # | Download | only in ofwboot
hfs.h revision 1.1
      1 /*	$NetBSD: hfs.h,v 1.1 2000/11/14 11:25:35 tsubai Exp $	*/
      2 
      3 int hfs_open(char *, struct open_file *);
      4 int hfs_close(struct open_file *);
      5 int hfs_read(struct open_file *, void *, size_t, size_t *);
      6 int hfs_write(struct open_file *, void *, size_t, size_t *);
      7 off_t hfs_seek(struct open_file *, off_t, int);
      8 int hfs_stat(struct open_file *, struct stat *);
      9