sbase/fs.h
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

15 lines
309 B
C

/* See LICENSE file for copyright and license details. */
extern int cp_aflag;
extern int cp_dflag;
extern int cp_fflag;
extern int cp_pflag;
extern int cp_rflag;
extern int cp_vflag;
extern int cp_status;
extern int rm_fflag;
extern int rm_rflag;
int cp(const char *, const char *);
void rm(const char *);