aboutsummaryrefslogtreecommitdiff
path: root/mv.c
diff options
context:
space:
mode:
Diffstat (limited to 'mv.c')
-rw-r--r--mv.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/mv.c b/mv.c
deleted file mode 100644
index 46eab14..0000000
--- a/mv.c
+++ /dev/null
@@ -1,37 +0,0 @@
-#define _POSIX_C_SOURCE 2
-#include <unistd.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-
-int main(int argc, char **argv)
-{
- int option;
-
- while ((option = getopt(argc, argv, "bfinS:t:Tuv")) != -1)
- {
- switch (option)
- {
- case 'b':
- break;
- case 'f':
- break;
- case 'i':
- break;
- case 'n':
- break;
- case 'S':
- break;
- case 't':
- break;
- case 'T':
- break;
- case 'u':
- break;
- case 'v':
- break;
- }
- }
-
- return EXIT_SUCCESS;
-}