Setup the input buffer state to scan a string. The next call to cmListFileLexer_yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * @param yyscanner The scanner object. * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * cmListFileLexer_yy_scan_bytes() instead. */
| 1980 | * cmListFileLexer_yy_scan_bytes() instead. |
| 1981 | */ |
| 1982 | YY_BUFFER_STATE cmListFileLexer_yy_scan_string (yyconst char * yystr , yyscan_t yyscanner) |
| 1983 | { |
| 1984 | |
| 1985 | return cmListFileLexer_yy_scan_bytes(yystr,(int) strlen(yystr) ,yyscanner); |
| 1986 | } |
| 1987 | |
| 1988 | /** Setup the input buffer state to scan the given bytes. The next call to cmListFileLexer_yylex() will |
| 1989 | * scan from a @e copy of @a bytes. |
nothing calls this directly
no test coverage detected