unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob c442e3f5e5fa85cf3c40c07639803471b64c417c 680 bytes (raw)
name: notmuch-opts.h 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 
#ifndef NOTMUCH_OPTS_H
#define NOTMUCH_OPTS_H

#include "notmuch.h"

enum notmuch_opt_type {
    NOTMUCH_OPT_NULL = 0,
    NOTMUCH_OPT_NO_ARG,
    NOTMUCH_OPT_KEYWORD
};

typedef struct notmuch_keyword {
    const char *name;
    int keyword_id;
} notmuch_keyword_t;

typedef struct notmuch_opt_desc {
    const char *name;
    int  arg_id;
    enum notmuch_opt_type opt_type;
    struct notmuch_keyword *keywords;
} notmuch_opt_desc_t;

typedef struct notmuch_opt {
    int arg_id;
    int keyword_id;
    const char *string;
} notmuch_opt_t;

notmuch_bool_t
parse_argument (const char* name, const char *arg, const notmuch_opt_desc_t *options,
		notmuch_opt_t *result);

#endif

debug log:

solving c442e3f ...
found c442e3f in https://yhetil.org/notmuch/1322702130-26068-1-git-send-email-bremner@debian.org/

applying [1/1] https://yhetil.org/notmuch/1322702130-26068-1-git-send-email-bremner@debian.org/
diff --git a/notmuch-opts.h b/notmuch-opts.h
new file mode 100644
index 0000000..c442e3f

Checking patch notmuch-opts.h...
Applied patch notmuch-opts.h cleanly.

index at:
100644 c442e3f5e5fa85cf3c40c07639803471b64c417c	notmuch-opts.h

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).