Merge branch '1.37'
[geany-mirror.git] / ctags / main / fmt.h
blob0e428cde188a7ffa651c3898f5663256d24fdcd5
1 /*
3 * Copyright (c) 2015, Red Hat, Inc.
4 * Copyright (c) 2015, Masatake YAMATO
6 * Author: Masatake YAMATO <yamato@redhat.com>
8 * This source code is released for free distribution under the terms of the
9 * GNU General Public License version 2 or (at your option) any later version.
13 #ifndef FMT_H
14 #define FMT_H
16 #include "general.h"
17 #include "entry.h"
18 #include "mio.h"
20 typedef struct sFmtElement fmtElement;
21 extern fmtElement *fmtNew (const char* fmtString);
22 extern int fmtPrint (fmtElement * fmtelts, MIO* fp, const tagEntryInfo *tag);
23 extern void fmtDelete (fmtElement * fmtelts);
25 #endif /* FMT_H */