Files
applets
archival
console-tools
coreutils
libcoreutils
Makefile
Makefile.in
coreutils.h
cp_mv_stat.c
getopt_mk_fifo_nod.c
xgetoptfile_sort_uniq.c
Config.in
Makefile
Makefile.in
basename.c
cal.c
cat.c
chgrp.c
chmod.c
chown.c
chroot.c
cmp.c
cp.c
cut.c
date.c
dd.c
df.c
dirname.c
dos2unix.c
du.c
echo.c
env.c
expr.c
false.c
fold.c
head.c
hostid.c
id.c
length.c
ln.c
logname.c
ls.c
md5sum.c
mkdir.c
mkfifo.c
mknod.c
mv.c
od.c
printf.c
pwd.c
realpath.c
rm.c
rmdir.c
sha1sum.c
sleep.c
sort.c
stty.c
sync.c
tail.c
tee.c
test.c
touch.c
tr.c
true.c
tty.c
uname.c
uniq.c
usleep.c
uudecode.c
uuencode.c
watch.c
wc.c
who.c
whoami.c
yes.c
debian
debianutils
docs
editors
examples
findutils
include
init
libbb
libpwdgrp
loginutils
miscutils
modutils
networking
procps
scripts
shell
sysdeps
sysklogd
tests
testsuite
util-linux
.cvsignore
.indent.pro
AUTHORS
Changelog
INSTALL
LICENSE
Makefile
README
Rules.mak
TODO
busybox/coreutils/libcoreutils/coreutils.h
2003-03-19 09:13:01 +00:00

13 lines
374 B
C

#ifndef COREUTILS_H
#define COREUTILS_H 1
typedef int (*stat_func)(const char *fn, struct stat *ps);
extern int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf);
extern int cp_mv_stat(const char *fn, struct stat *fn_stat);
extern mode_t getopt_mk_fifo_nod(int argc, char **argv);
extern FILE *xgetoptfile_sort_uniq(char **argv, const char *mode);
#endif