File: rexx.c

package info (click to toggle)
exuberant-ctags 1%3A5.5.4-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,280 kB
  • ctags: 2,597
  • sloc: ansic: 17,511; makefile: 159; sh: 48
file content (39 lines) | stat: -rw-r--r-- 1,013 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
*   $Id: rexx.c,v 1.5 2003/04/01 04:55:28 darren Exp $
*
*   Copyright (c) 2001-2003, Darren Hiebert
*
*   This source code is released for free distribution under the terms of the
*   GNU General Public License.
*
*   This module contains functions for generating tags for the REXX language
*   (http://www.rexxla.org, http://www2.hursley.ibm.com/rexx).
*/

/*
*   INCLUDE FILES
*/
#include "general.h"    /* always include first */
#include "parse.h"      /* always include */

/*
*   FUNCTION DEFINITIONS
*/

static void installRexxRegex (const langType language)
{
    addTagRegex (language, "^([A-Za-z0-9@#$\\.!?_]+)[ \t]*:",
	"\\1", "s,subroutine,subroutines", NULL);
}

extern parserDefinition* RexxParser (void)
{
    static const char *const extensions [] = { "cmd", "rexx", "rx", NULL };
    parserDefinition* const def = parserNew ("REXX");
    def->extensions = extensions;
    def->initialize = installRexxRegex;
    def->regex      = TRUE;
    return def;
}

/* vi:set tabstop=8 shiftwidth=4: */