#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 intfInfo * intf, struct netInfo * netc,
		     struct driversLoaded ** dl, int dontPartition);

#endif

