Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
usr
/
share
/
doc
/
re2c
/
examples
/
c
/
eof
/
Filename :
03_eof_rule.re
back
Copy
// re2c $INPUT -o $OUTPUT #include <assert.h> // expect a null-terminated string static int lex(const char *str, unsigned int len) { const char *YYCURSOR = str, *YYLIMIT = str + len, *YYMARKER; int count = 0; loop: /*!re2c re2c:define:YYCTYPE = char; re2c:yyfill:enable = 0; re2c:eof = 0; * { return -1; } $ { return count; } ['] ([^'\\] | [\\][^])* ['] { ++count; goto loop; } [ ]+ { goto loop; } */ } #define TEST(s, r) assert(lex(s, sizeof(s) - 1) == r) int main() { TEST("", 0); TEST("'qu\0tes' 'are' 'fine: \\'' ", 3); TEST("'unterminated\\'", -1); return 0; }