diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-08-22 19:43:03 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-08-22 19:43:03 +0200 |
| commit | c40f79737a4ce6ae0cd8bd6ea7f302217333e486 (patch) | |
| tree | 5afe1af26880bd7f8b16ee33fb8e14f99f665938 /mv.c | |
| parent | f204fe59bd5fa537bf84cb522339c92b16f5a909 (diff) | |
| download | coreutils-c40f79737a4ce6ae0cd8bd6ea7f302217333e486.tar.gz coreutils-c40f79737a4ce6ae0cd8bd6ea7f302217333e486.tar.bz2 coreutils-c40f79737a4ce6ae0cd8bd6ea7f302217333e486.zip | |
Added Makefile
Diffstat (limited to 'mv.c')
| -rw-r--r-- | mv.c | 37 |
1 files changed, 0 insertions, 37 deletions
@@ -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; -} |
