#ifndef FSEDIT_H
#define FSEDIT_H

#include "hd.h"
#include "fs.h"

/* drives is NULL terminated */
int kickstartPartitioning(struct partitionTable * parts, struct fstab * fstab, 
		     char **drives);

int FSEditPartitions(struct partitionTable * parts, struct fstab * fstab, 
		     char **drives,
		     struct netInterface * intf, struct netConfig * netc,
		     struct driversLoaded ** dl);

#endif