]> git.cameronkatri.com Git - mandoc.git/blob - mandocdb.h
Correctly handle constructs like
[mandoc.git] / mandocdb.h
1 /* $Id: mandocdb.h,v 1.1 2011/11/13 10:49:57 schwarze Exp $ */
2 /*
3 * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18 #define MANDOC_DB "mandoc.db"
19 #define MANDOC_IDX "mandoc.index"
20
21 #define TYPE_An 0x01
22 #define TYPE_Cd 0x02
23 #define TYPE_Er 0x04
24 #define TYPE_Ev 0x08
25 #define TYPE_Fn 0x10
26 #define TYPE_In 0x20
27 #define TYPE_Nd 0x40
28 #define TYPE_Nm 0x100
29 #define TYPE_Pa 0x200
30 #define TYPE_St 0x400
31 #define TYPE_Va 0x1000
32 #define TYPE_Xr 0x2000