2001-03-05 22:29:24 +01:00
|
|
|
/* mntent.h
|
|
|
|
|
2012-11-16 18:35:14 +01:00
|
|
|
Copyright 1996, 1998, 1999, 2000, 2001, 2006, 2009, 2010, 2012 Red Hat, Inc.
|
2001-03-05 22:29:24 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifndef _MNTENT_H
|
|
|
|
#define _MNTENT_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct mntent
|
|
|
|
{
|
|
|
|
char *mnt_fsname;
|
|
|
|
char *mnt_dir;
|
|
|
|
char *mnt_type;
|
|
|
|
char *mnt_opts;
|
|
|
|
int mnt_freq;
|
|
|
|
int mnt_passno;
|
|
|
|
};
|
|
|
|
|
2000-08-22 17:12:29 +02:00
|
|
|
#ifndef _NOMNTENT_FUNCS
|
2006-02-13 20:01:32 +01:00
|
|
|
#include <stdio.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
FILE *setmntent (const char *__filep, const char *__type);
|
|
|
|
struct mntent *getmntent (FILE *__filep);
|
2012-07-18 13:17:25 +02:00
|
|
|
struct mntent *getmntent_r (FILE *, struct mntent *, char *, int);
|
2000-02-17 20:38:33 +01:00
|
|
|
int endmntent (FILE *__filep);
|
2000-08-22 17:12:29 +02:00
|
|
|
#endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
#ifndef _NOMNTENT_MACROS
|
2012-11-16 18:35:14 +01:00
|
|
|
|
|
|
|
#include <paths.h>
|
|
|
|
|
2010-02-02 12:17:54 +01:00
|
|
|
/* The following two defines are deprecated. Use the equivalent
|
|
|
|
names from paths.h instead. */
|
|
|
|
#ifndef MNTTAB
|
|
|
|
#define MNTTAB _PATH_MNTTAB
|
|
|
|
#endif
|
2009-03-24 10:19:37 +01:00
|
|
|
/* This next file does exist, but the implementation of these
|
|
|
|
functions does not actually use it.
|
|
|
|
However, applications need the define to pass to setmntent().
|
2000-02-17 20:38:33 +01:00
|
|
|
*/
|
|
|
|
#ifndef MOUNTED
|
2010-02-02 12:17:54 +01:00
|
|
|
#define MOUNTED _PATH_MOUNTED
|
2000-02-17 20:38:33 +01:00
|
|
|
#endif
|
2009-03-24 10:19:37 +01:00
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
#endif /* !_NOMNTENT_MACROS */
|
2012-11-16 18:35:14 +01:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _MNTENT_H */
|