dect
/
asterisk
Archived
13
0
Fork 0

comment behaviour of pbcwhere in preparation for its use

in more places.



git-svn-id: http://svn.digium.com/svn/asterisk/trunk@22656 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
rizzo 2006-04-26 22:56:18 +00:00
parent 22ba18f6b6
commit f2d3571c41
2 changed files with 12 additions and 6 deletions

View File

@ -29,7 +29,7 @@
#include "ael/ael.tab.h"
#include "asterisk/ael_structs.h"
static char pbcstack[400];
static char pbcstack[400]; /* XXX missing size checks */
static int pbcpos = 0;
static int parencount = 0;
@ -45,7 +45,7 @@ void ael_yyset_column (int column_no , yyscan_t yyscanner);
int ael_yyparse (struct parse_io *);
static void pbcpush(char x);
static int pbcpop(char x);
static void pbcwhere(char *text, int *line, int *col );
static void pbcwhere(const char *text, int *line, int *col );
struct stackelement {
char *fname;
@ -563,7 +563,10 @@ static int c_prevword(void)
}
#endif
static void pbcwhere(char *text, int *line, int *col )
/* compute the total number of lines and columns in the text
* passed as argument.
*/
static void pbcwhere(const char *text, int *line, int *col )
{
int loc_line = 0;
int loc_col = 0;

View File

@ -664,7 +664,7 @@ static yyconst flex_int16_t yy_chk[553] =
#include "ael/ael.tab.h"
#include "asterisk/ael_structs.h"
static char pbcstack[400];
static char pbcstack[400]; /* XXX missing size checks */
static int pbcpos = 0;
static int parencount = 0;
@ -680,7 +680,7 @@ void ael_yyset_column (int column_no , yyscan_t yyscanner);
int ael_yyparse (struct parse_io *);
static void pbcpush(char x);
static int pbcpop(char x);
static void pbcwhere(char *text, int *line, int *col );
static void pbcwhere(const char *text, int *line, int *col );
struct stackelement {
char *fname;
@ -2914,7 +2914,10 @@ static int c_prevword(void)
}
#endif
static void pbcwhere(char *text, int *line, int *col )
/* compute the total number of lines and columns in the text
* passed as argument.
*/
static void pbcwhere(const char *text, int *line, int *col )
{
int loc_line = 0;
int loc_col = 0;