ftp.nice.ch/pub/next/developer/languages/c/djgpp-NS.I.bs.tar.gz#/djgpp/include/mntent.h

This is mntent.h in view mode; [Download] [Up]

#include <stdio.h>

#define	MNT_MNTTAB	"/etc/mnttab"

struct mntent
{
    char	*mnt_fsname;
    char	*mnt_dir;
    char	*mnt_type;
    char	*mnt_opts;
    int		mnt_freq;
    int		mnt_passno;
    long	mnt_time;
};

extern FILE		*setmntent(char *, char *);
extern struct mntent	*getmntent(FILE *);
extern int		addmntent(FILE *, struct mntent *);
extern char		*hasmntopt(struct mntent *, char *);
extern int		endmntent(FILE *);

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.