Setup the input buffer state to scan a string. The next call to msyylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * msyy_scan_bytes() instead. */
| 4956 | * msyy_scan_bytes() instead. |
| 4957 | */ |
| 4958 | YY_BUFFER_STATE msyy_scan_string (yyconst char * yystr ) |
| 4959 | { |
| 4960 | |
| 4961 | return msyy_scan_bytes(yystr,strlen(yystr) ); |
| 4962 | } |
| 4963 | |
| 4964 | /** Setup the input buffer state to scan the given bytes. The next call to msyylex() will |
| 4965 | * scan from a @e copy of @a bytes. |
no test coverage detected