Server IP : 172.67.216.182 / Your IP : 162.158.189.19 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/php/80/src/ext/mbstring/libmbfl/filters/ |
Upload File : |
#!/usr/bin/awk -f # # Description: a script that generates a single byte code set to Unicode # mapping table. # function conv(str) { if (!match(str, "^0[xX]")) { return 0 + str } retval = 0 for (i = 3; i <= length(str); i++) { n = index("0123456789abcdefABCDEF", substr(str, i, 1)) - 1 if (n < 0) { return 0 + str; } else if (n >= 16) { n -= 6; } retval = retval * 16 + n } return retval } BEGIN { FS="[ \t#]" } /^#/ { # Do nothing } { tbl[conv($1)] = conv($2) } END { print "/* This file is automatically generated. Do not edit! */" if (IFNDEF_NAME) { print "#ifndef " IFNDEF_NAME } print "static const int " TABLE_NAME "[] = {" i = 160; for (;;) { printf("\t0x%04x, 0x%04x, 0x%04x, 0x%04x, 0x%04x, 0x%04x, 0x%04x, 0x%04x", tbl[i++], tbl[i++], tbl[i++], tbl[i++], tbl[i++], tbl[i++], tbl[i++], tbl[i++]); if (i != 256) { printf(",\n"); } else { print "" break; } } print "};" if (IFNDEF_NAME) { print "#endif /* " IFNDEF_NAME " */" } }