String input to flex lexer
http://flex.sourceforge.net/manual/Multiple-Input-Buffers.html#Scanning%20Strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
YY_BUFFER_STATE yy_scan_string(const char *str); /* scans a NUL-terminated string */ | |
YY_BUFFER_STATE yy_scan_bytes(const char *bytes, int len); /* scans len bytes (including possibly NULs) starting at location bytes */ | |
YY_BUFFER_STATE yy_scan_buffer(char *base, yy_size_t size); /* avoid copy */ |