implement cp and mv and improve rm

This commit is contained in:
William Haddon
2012-01-30 22:41:33 +00:00
parent 4192b13768
commit cec53d14b1
16 changed files with 229 additions and 42 deletions

9
fs.h Normal file
View File

@@ -0,0 +1,9 @@
/* See LICENSE file for copyright and license details. */
#include <stdbool.h>
extern bool cp_rflag;
extern bool rm_fflag;
extern bool rm_rflag;
int cp(const char *, const char *);
void rm(const char *);