2023-07-27 14:04:50 -04:00
|
|
|
/*===========================================================================
|
2023-08-04 14:34:51 -04:00
|
|
|
Copyright (c) 2001, The Santa Cruz Operation
|
2023-07-27 14:04:50 -04:00
|
|
|
All rights reserved.
|
2023-08-04 14:34:51 -04:00
|
|
|
|
2023-07-27 14:04:50 -04:00
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
*Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
|
|
|
|
*Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
*Neither name of The Santa Cruz Operation nor the names of its contributors
|
|
|
|
may be used to endorse or promote products derived from this software
|
2023-08-04 14:34:51 -04:00
|
|
|
without specific prior written permission.
|
2023-07-27 14:04:50 -04:00
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
|
2023-08-04 15:09:58 -04:00
|
|
|
IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT falseT LIMITED TO,
|
2023-07-27 14:04:50 -04:00
|
|
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
2023-08-04 15:19:25 -04:00
|
|
|
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
|
2023-07-27 14:04:50 -04:00
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
2023-08-04 15:09:58 -04:00
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT falseT LIMITED TO, PROCUREMENT OF
|
2023-07-27 14:04:50 -04:00
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION)
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
2023-08-04 14:34:51 -04:00
|
|
|
DAMAGE.
|
2023-07-27 14:04:50 -04:00
|
|
|
=========================================================================*/
|
|
|
|
|
|
|
|
#ifndef CSCOPE_SCANNER_H
|
|
|
|
#define CSCOPE_SCANNER_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2023-08-13 05:21:52 -04:00
|
|
|
#undef YYLMAX
|
|
|
|
#define YYLMAX STMTMAX + PATLEN + 1 /* scanner line buffer size */
|
2023-07-27 14:04:50 -04:00
|
|
|
|
2023-08-04 14:34:51 -04:00
|
|
|
/* cross-reference database mark characters (when new ones are added,
|
2023-07-27 14:04:50 -04:00
|
|
|
* update the cscope.out format description in cscope.1)
|
|
|
|
*/
|
2023-08-13 05:21:52 -04:00
|
|
|
#define CLASSDEF 'c'
|
|
|
|
#define DEFINE '#'
|
|
|
|
#define DEFINEEND ')'
|
|
|
|
#define ENUMDEF 'e'
|
|
|
|
#define FCNCALL '`'
|
|
|
|
#define FCNDEF '$'
|
|
|
|
#define FCNEND '}'
|
|
|
|
#define GLOBALDEF 'g'
|
|
|
|
#define INCLUDE '~'
|
|
|
|
#define MEMBERDEF 'm'
|
|
|
|
#define NEWFILE '@'
|
|
|
|
#define STRUCTDEF 's'
|
|
|
|
#define TYPEDEF 't'
|
|
|
|
#define UNIONDEF 'u'
|
2023-07-27 14:04:50 -04:00
|
|
|
|
|
|
|
/* other scanner token types */
|
2023-08-13 05:21:52 -04:00
|
|
|
#define LEXEOF 0
|
|
|
|
#define LEXERR 1
|
|
|
|
#define IDENT 2
|
|
|
|
#define NEWLINE 3
|
2023-07-27 14:04:50 -04:00
|
|
|
|
|
|
|
/* scanner.l global data */
|
2023-08-13 05:21:52 -04:00
|
|
|
extern int first; /* buffer index for first char of symbol */
|
|
|
|
extern int last; /* buffer index for last char of symbol */
|
|
|
|
extern int lineno; /* symbol line number */
|
|
|
|
extern FILE *yyin; /* input file descriptor */
|
|
|
|
extern FILE *yyout; /* output file */
|
|
|
|
extern int myylineno; /* input line number */
|
2023-07-27 14:04:50 -04:00
|
|
|
|
|
|
|
#ifdef USING_LEX
|
|
|
|
/* HBB 20010430: if lex is used instead of flex, have to simulate the
|
|
|
|
* private copies of yytext and yytext for the world outside scanner.l: */
|
|
|
|
/* FIXME: there should be a feature test for this! */
|
2023-08-13 05:21:52 -04:00
|
|
|
# if defined(__OSF1__) || defined(__sun) || defined(_AIX)
|
|
|
|
extern char yytext[];
|
|
|
|
# else
|
|
|
|
extern unsigned char yytext[];
|
|
|
|
# endif
|
|
|
|
extern int yyleng;
|
2023-07-27 14:04:50 -04:00
|
|
|
# define my_yytext yytext
|
|
|
|
# define my_yyleng yyleng
|
|
|
|
#else
|
2023-08-13 05:21:52 -04:00
|
|
|
extern char *my_yytext; /* private copy of input line */
|
|
|
|
extern size_t my_yyleng; /* ... and current length of it */
|
2023-07-27 14:04:50 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* The master function exported by scanner.l */
|
2023-08-13 05:21:52 -04:00
|
|
|
int yylex(void);
|
|
|
|
void initscanner(char *srcfile);
|
2023-07-27 14:04:50 -04:00
|
|
|
|
|
|
|
#endif /* CSCOPE_SCANNER_H ends */
|