Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrick Stolee <derrickstolee@github.com>2022-03-09 19:01:32 +0300
committerJunio C Hamano <gitster@pobox.com>2022-03-09 21:25:26 +0300
commit4a4c3f9b6389168033843814ad45e69bf0b92b1d (patch)
tree989ea55d1a3077f9f1d4200cf7eaec2e467a34d8 /list-objects-filter-options.h
parent1f52cdfacb6af203cdcc6a5101fc8cb5fff72735 (diff)
list-objects-filter-options: create copy helper
As we add more embedded members with type 'struct list_objects_filter_options', it will be important to easily perform a deep copy across multiple such structs. Create list_objects_filter_copy() to satisfy this need. This method is recursive to match the recursive nature of the struct. Signed-off-by: Derrick Stolee <derrickstolee@github.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'list-objects-filter-options.h')
-rw-r--r--list-objects-filter-options.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/list-objects-filter-options.h b/list-objects-filter-options.h
index da5b6737e2..425c38cae9 100644
--- a/list-objects-filter-options.h
+++ b/list-objects-filter-options.h
@@ -132,4 +132,8 @@ void partial_clone_get_default_filter_spec(
struct list_objects_filter_options *filter_options,
const char *remote);
+void list_objects_filter_copy(
+ struct list_objects_filter_options *dest,
+ const struct list_objects_filter_options *src);
+
#endif /* LIST_OBJECTS_FILTER_OPTIONS_H */