ubase/ubase.h
sin d4c1710911 Add umount(8)
No manpage yet.
2013-08-07 10:13:21 +01:00

21 lines
358 B
C

/* See LICENSE file for copyright and license details. */
/* grabmntinfo.c */
struct mntinfo {
const char *fsname;
const char *mntdir;
};
int grabmntinfo(struct mntinfo **minfo);
/* syslog.c */
int syslog_size(void);
int syslog_read(void *buf, size_t n);
/* umount.c */
enum {
UBASE_MNT_FORCE = 1 << 0
};
int do_umount(const char *target, int opts);