diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-01-12 23:43:12 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-01-12 23:43:12 +0800 |
commit | ebfb5cf86e54df87bdbd952cfed7714325d530a3 (patch) | |
tree | d54ef1ad8ebb83cdeac1186d738b50fb71bb05fb /include | |
parent | 81714aa12e87b72e4dcddde246afb8011f7b06f0 (diff) | |
download | pttbbs-ebfb5cf86e54df87bdbd952cfed7714325d530a3.tar pttbbs-ebfb5cf86e54df87bdbd952cfed7714325d530a3.tar.gz pttbbs-ebfb5cf86e54df87bdbd952cfed7714325d530a3.tar.bz2 pttbbs-ebfb5cf86e54df87bdbd952cfed7714325d530a3.tar.lz pttbbs-ebfb5cf86e54df87bdbd952cfed7714325d530a3.tar.xz pttbbs-ebfb5cf86e54df87bdbd952cfed7714325d530a3.tar.zst pttbbs-ebfb5cf86e54df87bdbd952cfed7714325d530a3.zip |
implement basic cp(1), fix "/bin/cp: Argument list too long."
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2393 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/proto.h b/include/proto.h index 005dcb17..61897662 100644 --- a/include/proto.h +++ b/include/proto.h @@ -543,6 +543,7 @@ void setdirpath(char *buf, char *direct, char *fname); int str_checksum(char *str); void show_help(char * const helptext[]); void show_helpfile(const char * helpfile); +int copy_file(char *src, char *dst); int belong(char *filelist, char *key); char *Cdatedate(time_t *clock); void sethomeman(char *buf, const char *userid); |