.tr || .TH VGRINDEFS 5 .UC .SH NAME vgrindefs \- vgrind's language definition data base .SH SYNOPSIS .B /usr/lib/vgrindefs .SH DESCRIPTION .I Vgrindefs contains all language definitions for vgrind. The data base is very similar to .IR termcap(5). .SH FIELDS The following table names and describes each field. .PP .nf .ta \w'k0-k9 'u +\w'Type 'u \fBName Type Description\fP pb str regular expression for start of a procedure bb str regular expression for start of a lexical block be str regular expression for the end of a lexical block cb str regular expression for the start of a comment ce str regular expression for the end of a comment sb str regular expression for the start of a string se str regular expression for the end of a string lb str regular expression for the start of a character constant le str regular expression for the end of a character constant tl bool present means procedures only defined at top lexical level oc bool present means upper and lower case are equivalent kw str a list of keywords separated by commas .fi .PP .B A Sample Entry .PP The following entry, which describes the C language, is typical of a language entry. .PP .nf C|c:\ :pb=^\ed?*?\ed?\ep\ed?\(\ea?\):bb={:be=}:cb=/*:ce=*/:sb=":se=\ee":\e :lb=':le=\ee':tl:\e :kw=asm auto break case char continue default do double else enum\e extern float for fortran goto if int long register return short\e sizeof static struct switch typedef union unsigned while #define\e #else #endif #if #ifdef #ifndef #include #undef # define else endif\e if ifdef ifndef include undef: .fi .PP Note that the first field is just the language name (and any variants of it). Thus the C language could be specified to .IR vgrind (1) as "c" of "C". .PP Entries may continue onto multiple lines by giving a \e as the last character of a line, and that empty fields may be included for readability (here between the last field on a line and the first field on the next). Capabilities in .I vgrindefs are of two types: Boolean capabilities which indicate that the language has some particular feature and string capabilities, which give a regular expression or keyword list. .PP .B REGULAR EXPRESSIONS .PP .I Vgrindefs uses a regular expression which is very similar to those of .IR ex (1) and .IR lex (1). The metasymbols and their meanings are: .IP $ the end of a line .IP ^ the beginning of a line .IP \ed a delimiter (space, tab, newline, start of line) .IP \ea matches any string of symbols (like .* in lex) .IP \ep matches any alphanumeric name. Used to match the procedure name in the regular expression which defines the start of a procedure. .IP () grouping .IP | alternation .IP ? last item is optional .PP Unlike other regular expressions in the system, these match words and not characters. Hence something like "(tramp|steamer)flies?" would match "tramp", "steamer", "trampflies", or "steamerflies". .PP .B KEYWORD LIST .PP The keyword list is just a list of keywords in the language separated by spaces. If the "oc" boolean is specified, indicating that upper and lower case are equivalent, then all the keywords should be specified in lower case. .SH FILES .ta 2i /usr/lib/vgrindefs file containing terminal descriptions .SH SEE ALSO troff(1), vgrind(1) .SH AUTHOR Dave Presotto