xref: /Universal-ctags/parsers/frontmatter.h (revision 532866040b26c111e1e2a75f9383272afb02abfe)
1 /*
2  *   Copyright (c) 2022, Masatake YAMATO <yamato@redhat.com>
3  *
4  *   This source code is released for free distribution under the terms of the
5  *   GNU General Public License version 2 or (at your option) any later version.
6  *
7  *   Frontmatter parser interface exported to the other parsers
8  */
9 
10 #ifndef CTAGS_FRONTMATTER_H
11 #define CTAGS_FRONTMATTER_H
12 
13 #include "general.h"
14 
15 typedef enum {
16 	FRONTMATTER_TITLE_KIND,
17 } frontmatterKind;
18 
19 #endif
20