⚝
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
/
001_upn_calculator
/
View File Name :
calc_002.re
/* re2c lesson 001_upn_calculator, calc_002, (c) M. Boerger 2006 - 2007 */ /*!ignore:re2c - making use of YYFILL . Here we modified the scanner to not require strlen() on the call. Instead we compute limit on the fly. That is whenever more input is needed we search for the terminating \0 in the next n chars the scanner needs. . If there is not enough input we quit the scanner. . Note that in lesson_001 YYLIMIT was a character pointer computed only once. Here is of course also of type YYCTYPE but a variable that gets reevaluated by YYFILL(). . To make the code smaller we take advantage of the fact that our loop has no break so far. This allows us to use break here and have the code that is used for YYFILL() not contain the printf in every occurence. That way the generated code gets smaller. */ #include <stdlib.h> #include <stdio.h> #include <string.h> int fill(char *p, int n, char **l) { while (*++p && n--) ; * l = p; return n <= 0; } int scan(char *s) { char *p = s; char *l = s; char *q = 0; #define YYCTYPE char #define YYCURSOR p #define YYLIMIT l #define YYMARKER q #define YYFILL(n) { if (!fill(p, n, &l)) break; } for(;;) { /*!re2c re2c:indent:top = 2; "0"[0-9]+ { printf("Oct\n"); continue; } [1-9][0-9]* { printf("Num\n"); continue; } "0" { printf("Num\n"); continue; } "+" { printf("+\n"); continue; } "-" { printf("+\n"); continue; } "\000" { printf("EOF\n"); return 0; } [^] { printf("ERR\n"); return 1; } */ } printf("OOD\n"); return 2; } int main(int argc, char **argv) { if (argc > 1) { return scan(argv[1]); } else { fprintf(stderr, "%s <expr>\n", argv[0]); return 0; } }