Handle template expressions that may use the << or >> operators
[arduino-ctags.git] / dosbatch.c
blobc165183c7cce78bb81f6fc42adc2b32502deb550
1 /*
2 * $Id$
4 * Copyright (c) 2009, David Fishburn
6 * This source code is released for free distribution under the terms of the
7 * GNU General Public License.
9 * This module contains functions for generating tags for DOS Batch language files.
13 * INCLUDE FILES
15 #include "general.h" /* must always come first */
17 #include <string.h>
18 #include "parse.h"
21 * FUNCTION DEFINITIONS
24 static void installDosBatchRegex (const langType language)
26 addTagRegex (language,
27 "^:([A-Za-z_0-9]+)", "\\1", "l,label,labels", NULL);
28 addTagRegex (language,
29 "set[ \t]+([A-Za-z_0-9]+)[ \t]*=", "\\1", "v,variable,variables", NULL);
32 extern parserDefinition* DosBatchParser ()
34 static const char *const extensions [] = { "bat", "cmd", NULL };
35 parserDefinition* const def = parserNew ("DosBatch");
36 def->extensions = extensions;
37 def->initialize = installDosBatchRegex;
38 def->regex = TRUE;
39 return def;
42 /* vi:set tabstop=4 shiftwidth=4: */