X-Git-Url: https://rtime.felk.cvut.cz/gitweb/notmuch.git/blobdiff_plain/ba4e8565294fc0a197b4c08082ad912c31888008..398f1484b9cb0d981e668f55e2e42adeaf8be588:/tag-util.h diff --git a/tag-util.h b/tag-util.h index c07bfde5..8a4074ce 100644 --- a/tag-util.h +++ b/tag-util.h @@ -72,6 +72,35 @@ 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); + +/* + * Test tags for some forbidden cases. + * + * Relax the checks if 'remove' is true to allow removal of previously + * added forbidden tags. + * + * return: NULL if OK, + * explanatory message otherwise. + */ +const char * +illegal_tag (const char *tag, notmuch_bool_t remove); + /* * Create an empty list of tag operations *