diff options
author | Rene Scharfe <rene.scharfe@lsrfire.ath.cx> | 2008-07-25 12:41:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-25 17:16:12 -0700 |
commit | 6e94e6835f397cd2602ca1eb12002e51aa6b0500 (patch) | |
tree | 243d614ba5341500b1b5ea3994e106cdb85f1e21 /archive.h | |
parent | d3296e37b61fdd80a8b785270b1d11db34dab2f5 (diff) | |
download | git-6e94e6835f397cd2602ca1eb12002e51aa6b0500.tar.gz git-6e94e6835f397cd2602ca1eb12002e51aa6b0500.tar.xz |
archive: add write_archive()
Both archive and upload-archive have to parse command line arguments and
then call the archiver specific write function. Move the duplicate code
to a new function, write_archive().
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive.h')
-rw-r--r-- | archive.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -41,5 +41,6 @@ extern int write_tar_archive(struct archiver_args *); extern int write_zip_archive(struct archiver_args *); extern int write_archive_entries(struct archiver_args *args, write_archive_entry_fn_t write_entry); +extern int write_archive(int argc, const char **argv, const char *prefix, int setup_prefix); #endif /* ARCHIVE_H */ |