summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2022-07-31 12:58:16 +0200
committerAkim Demaille <akim.demaille@gmail.com>2022-07-31 12:58:16 +0200
commitdb8c1bbbfd12e2208cf90e61972f862ffceec25c (patch)
tree7404c1bb44f26b7984bf43c3808cb0b3b19db87e /examples
parentcf686be382ae70e69fc147768132e9334dc27814 (diff)
downloadbison-db8c1bbbfd12e2208cf90e61972f862ffceec25c.tar.gz
style: enforce GNU-style variable names
* examples/c/glr/c++-types.y, tests/cxx-type.at (lineNum, colNum): Rename as... (line_num, col_num): these.
Diffstat (limited to 'examples')
-rw-r--r--examples/c/glr/c++-types.y22
1 files changed, 11 insertions, 11 deletions
diff --git a/examples/c/glr/c++-types.y b/examples/c/glr/c++-types.y
index 07a2c700..ca592e27 100644
--- a/examples/c/glr/c++-types.y
+++ b/examples/c/glr/c++-types.y
@@ -144,8 +144,8 @@ FILE * input = NULL;
yytoken_kind_t
yylex (YYSTYPE *lval, YYLTYPE *lloc)
{
- static int lineNum = 1;
- static int colNum = 0;
+ static int line_num = 1;
+ static int col_num = 0;
while (1)
{
@@ -157,20 +157,20 @@ yylex (YYSTYPE *lval, YYLTYPE *lloc)
case EOF:
return 0;
case '\t':
- colNum = (colNum + 7) & ~7;
+ col_num = (col_num + 7) & ~7;
break;
case ' ': case '\f':
- colNum += 1;
+ col_num += 1;
break;
case '\n':
- lineNum += 1;
- colNum = 0;
+ line_num += 1;
+ col_num = 0;
break;
default:
{
yytoken_kind_t tok;
- lloc->first_line = lloc->last_line = lineNum;
- lloc->first_column = colNum;
+ lloc->first_line = lloc->last_line = line_num;
+ lloc->first_column = col_num;
if (isalpha (c))
{
char buffer[256];
@@ -179,7 +179,7 @@ yylex (YYSTYPE *lval, YYLTYPE *lloc)
do
{
buffer[i++] = (char) c;
- colNum += 1;
+ col_num += 1;
assert (i != sizeof buffer - 1);
c = getc (input);
}
@@ -200,10 +200,10 @@ yylex (YYSTYPE *lval, YYLTYPE *lloc)
}
else
{
- colNum += 1;
+ col_num += 1;
tok = c;
}
- lloc->last_column = colNum;
+ lloc->last_column = col_num;
return tok;
}
}