aboutsummaryrefslogtreecommitdiff
path: root/tag-util.h
diff options
context:
space:
mode:
authorDavid Bremner <bremner@debian.org>2012-12-25 15:42:39 -0400
committerDavid Bremner <bremner@debian.org>2013-01-07 20:42:21 -0400
commite9b6e464745fdebd4c6367dfc731859fe390b531 (patch)
treecb0d5f98cd8af6bd843525716973e3526d612583 /tag-util.h
parente13e2591470f849c86d410f50ec8103d2a5daf5b (diff)
notmuch-tag.c: convert to use tag-util
Command line parsing is factored out into a function parse_tag_command_line in tag-util.c. There is some duplicated code eliminated in tag_query, and a bunch of translation from using the bare tag_op structs to using that tag-utils API.
Diffstat (limited to 'tag-util.h')
-rw-r--r--tag-util.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tag-util.h b/tag-util.h
index c07bfde5..246de85c 100644
--- a/tag-util.h
+++ b/tag-util.h
@@ -72,6 +72,21 @@ parse_tag_line (void *ctx, char *line,
tag_op_flag_t flags,
char **query_str, tag_op_list_t *ops);
+
+
+/* Parse a command line of the following format:
+ *
+ * +<tag>|-<tag> [...] [--] <search-terms>
+ *
+ * Output Parameters:
+ * ops contains a list of tag operations
+ * query_str the search terms.
+ */
+
+tag_parse_status_t
+parse_tag_command_line (void *ctx, int argc, char **argv,
+ char **query_str, tag_op_list_t *ops);
+
/*
* Create an empty list of tag operations
*