X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=tag-util.h;h=4628f1630ad6263951b8672d5d43a6699281306a;hp=99b0fa0b41636dc162214f16aa9b0a0888bfa0c4;hb=f00c925bd10c024d5b9f88d8903c7a0d14e9cc6a;hpb=fb50cc41fe6f508118697d65a44e8f742a466ca0 diff --git a/tag-util.h b/tag-util.h index 99b0fa0b..4628f163 100644 --- a/tag-util.h +++ b/tag-util.h @@ -72,6 +72,23 @@ 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: + * + * +|- [...] [--] + * + * Output Parameters: + * ops contains a list of tag operations + * query_str the search terms. + * + * The ops argument is not cleared. + */ + +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 * @@ -87,8 +104,7 @@ tag_op_list_create (void *ctx); */ int -tag_op_list_append (void *ctx, - tag_op_list_t *list, +tag_op_list_append (tag_op_list_t *list, const char *tag, notmuch_bool_t remove);