MCPcopy Index your code
hub / github.com/MapServer/MapServer / msyy_scan_string

Function msyy_scan_string

maplexer.c:4958–4962  ·  view source on GitHub ↗

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. */

Source from the content-addressed store, hash-verified

4956 * msyy_scan_bytes() instead.
4957 */
4958YY_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.

Callers 1

maplexer.cFile · 0.85

Calls 1

msyy_scan_bytesFunction · 0.85

Tested by

no test coverage detected