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