ctypestest

snippets/ctypestest.py
1# © 2024 Autodesk, Inc. All rights reserved.
2
3from ctypes import *
4libc = cdll.msvcrt 
5print(libc)
6printf = libc.printf
7printf("Hello, %s\n", "World!")