sbase/cp.c
FRIGN ec8246bbc6 Un-boolify sbase
It actually makes the binaries smaller, the code easier to read
(gems like "val == true", "val == false" are gone) and actually
predictable in the sense of that we actually know what we're
working with (one bitwise operator was quite adventurous and
should now be fixed).

This is also more consistent with the other suckless projects
around which don't use boolean types.
2014-11-14 10:54:20 +00:00

52 lines
799 B
C

/* See LICENSE file for copyright and license details. */
#include <stdlib.h>
#include <sys/stat.h>
#include "fs.h"
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [-adfpRrv] source... dest\n", argv0);
}
int
main(int argc, char *argv[])
{
struct stat st;
ARGBEGIN {
case 'a':
/* implies -dpr */
cp_aflag = cp_dflag = cp_pflag = cp_rflag = 1;
break;
case 'd':
cp_dflag = 1;
break;
case 'p':
cp_pflag = 1;
break;
case 'f':
cp_fflag = 1;
break;
case 'R':
case 'r':
cp_rflag = 1;
break;
case 'v':
cp_vflag = 1;
break;
default:
usage();
} ARGEND;
if (argc < 2)
usage();
if (argc > 2 && !(stat(argv[argc-1], &st) == 0 && S_ISDIR(st.st_mode)))
eprintf("%s: not a directory\n", argv[argc-1]);
enmasse(argc, argv, cp);
return cp_status;
}