Get the current line number. * @param yyscanner The scanner object. */
| 2190 | * @param yyscanner The scanner object. |
| 2191 | */ |
| 2192 | int yyget_lineno (yyscan_t yyscanner) |
| 2193 | { |
| 2194 | struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| 2195 | |
| 2196 | if (! YY_CURRENT_BUFFER) |
| 2197 | return 0; |
| 2198 | |
| 2199 | return yylineno; |
| 2200 | } |
| 2201 | |
| 2202 | /** Get the current column number. |
| 2203 | * @param yyscanner The scanner object. |
no outgoing calls
no test coverage detected