#ifndef MOUNTPOINT_H
#define MOUNTPOINT_H
struct mountpoint {
char *device_path;
char *mount_path;
char *type;
};
/* Returns 1 = found, 0 = not found (from mount tabs, or the path itself),
-1 = error */
/* Iterate through mountpoints */
struct mountpoint_iter *mountpoint_iter_init(void);
/* Returns the next mountpoint or NULL if there are no more. */
/* Returns 0 if mountpoints were iterated successfully, -1 if it failed. */
#endif