aboutsummaryrefslogtreecommitdiffstats
path: root/merge.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-10-27 23:45:10 +0000
committerGuy Harris <guy@alum.mit.edu>2004-10-27 23:45:10 +0000
commitd9bdadc4dd3d4dbaf7581b7ffd21773232003936 (patch)
treeb28d0784c28eda6b511bdabc6ff147b15be12bd5 /merge.h
parentb48b8847b1ac3289656224831f86a5d235202455 (diff)
Get rid of merge_n_files() - it's only called in one place now, and
absorbing its logic into "cf_merge_files()" simplifies things a bit. svn path=/trunk/; revision=12421
Diffstat (limited to 'merge.h')
-rw-r--r--merge.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/merge.h b/merge.h
index 81dff56169..3102e94f20 100644
--- a/merge.h
+++ b/merge.h
@@ -146,32 +146,6 @@ merge_files(int in_file_count, merge_in_file_t in_files[], merge_out_file_t *out
extern gboolean
merge_append_files(int in_file_count, merge_in_file_t in_files[], merge_out_file_t *out_file, int *err);
-/** Return status from merge_n_files */
-typedef enum {
- MERGE_SUCCESS,
- MERGE_OPEN_INPUT_FAILED,
- MERGE_OPEN_OUTPUT_FAILED,
- MERGE_WRITE_FAILED
-} merge_status_e;
-
-/*
- * Convenience function: merge any number of input files into one.
- *
- * @param out_filename the output filename
- * @param in_file_count number of input files
- * @param in_filenames array of input filenames
- * @param do_append TRUE to append, FALSE to merge chronologically
- * @param err wiretap error, if failed and VERBOSE_NONE
- * @param err_info wiretap error string, if failed and VERBOSE_NONE
- * @param err_fileno file on which open failed, if VERBOSE_NONE
- * @return merge_status_e
- */
-extern merge_status_e
-merge_n_files(int out_fd, int in_file_count, char *const *in_filenames,
- int filetype, gboolean do_append, int *err, gchar **err_info,
- int *err_fileno);
-
-
#ifdef __cplusplus
}
#endif /* __cplusplus */