New option -clone

This commit is contained in:
2011-02-01 18:58:27 +00:00
parent 5ead96341e
commit ed04ef8aba
13 changed files with 255 additions and 70 deletions

View File

@ -1672,6 +1672,17 @@ ex:;
}
/* Option -clone */
int Xorriso_option_clone(struct XorrisO *xorriso, char *origin, char *dest,
int flag)
{
int ret;
ret= Xorriso_clone_tree(xorriso, NULL, origin, dest, 0);
return(ret);
}
/* Option -close "on"|"off" */
int Xorriso_option_close(struct XorrisO *xorriso, char *mode, int flag)
{