diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2016-07-19 21:31:55 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2016-07-19 21:31:55 +0000 |
commit | 4fe58b8b37f6b19d2c50441b4df20ca5687fe6ed (patch) | |
tree | 99ff72d0dd74a36a5e20f8cf1225a78361b8b4af /mansearch.h | |
parent | 0512b80d5f59824b3d18cd1494119fd904528ca5 (diff) | |
download | mandoc-4fe58b8b37f6b19d2c50441b4df20ca5687fe6ed.tar.gz |
Remove the dependency on SQLite without loss of functionality.
Stop supporting systems that don't have mmap(3).
Drop the obsolete names_check() now that we deleted MLINKS.
Diffstat (limited to 'mansearch.h')
-rw-r--r-- | mansearch.h | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/mansearch.h b/mansearch.h index c6171f7b..82076e23 100644 --- a/mansearch.h +++ b/mansearch.h @@ -16,7 +16,13 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define MANDOC_DB "mandoc.db" +#define MANDOC_DB "mandoc.new.db" +#define MANDOCDB_MAGIC 0x3a7d0cdb +#define MANDOCDB_VERSION 0 /* XXX Start counting in production. */ + +#define MACRO_MAX 36 +#define KEY_Nd 39 +#define KEY_MAX 40 #define TYPE_arch 0x0000000000000001ULL #define TYPE_sec 0x0000000000000002ULL @@ -66,9 +72,11 @@ #define NAME_FILE 0x0000004000000010ULL #define NAME_MASK 0x000000000000001fULL -#define FORM_CAT 0 /* manual page is preformatted */ -#define FORM_SRC 1 /* format is mdoc(7) or man(7) */ -#define FORM_NONE 4 /* format is unknown */ +enum form { + FORM_SRC = 1, /* Format is mdoc(7) or man(7). */ + FORM_CAT, /* Manual page is preformatted. */ + FORM_NONE /* Format is unknown. */ +}; enum argmode { ARG_FILE = 0, @@ -84,7 +92,7 @@ struct manpage { size_t ipath; /* number of the manpath */ uint64_t bits; /* name type mask */ int sec; /* section number, 10 means invalid */ - int form; /* 0 == catpage */ + enum form form; }; struct mansearch { @@ -98,7 +106,6 @@ struct mansearch { struct manpaths; -int mansearch_setup(int); int mansearch(const struct mansearch *cfg, /* options */ const struct manpaths *paths, /* manpaths */ int argc, /* size of argv */ |