Go to the first, previous, next, last section, table of contents.
#include <mntent.h> char *hasmntopt(const struct mntent *mnt, const char *opt);
This function scans the mnt_opts
field of the mntent
structure pointed to by mnt for a substring that matches
opt. See section getmntent.
This function returns the address of the substring if a match is found,
or NULL
otherwise.
not ANSI, not POSIX
Go to the first, previous, next, last section, table of contents.