Handle template expressions that may use the << or >> operators
[arduino-ctags.git] / ctags-utils.h
blob41283bf3c1ffeea99d5703cab91fcaf3c1d775f1
1 /*
2 * Copyright (C) Massimo Cora' 2010 <maxcvs@email.it>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Library General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA
19 #include "general.h" /* must always come first */
20 #include "read.h"
21 #include <assert.h>
22 #include <glib.h>
23 #include <string.h>
26 /**
27 * IMPORTANT NOTE
29 * This file should contain functions/helpers that aren't strictly
30 * ctags-standardized and that can be used in extra parsers (i.e. parser
31 * not included with ctags distribution).
32 * Doing so and keeping separate standard/extra files should make
33 * an upgrade of ctags easier.
37 void get_file_pos (gint line, fpos_t *fpos, FILE *f);