Return to Foreign Function Interface (FFI)
ctypes is a foreign function library for the Python programming language. It provides C-compatible data types and allows calling functions in DLLs or shared libraries. It can be used to wrap these libraries in pure Python.
```python import ctypes
libc = ctypes.CDLL(“libc.so.6”)
libc.printf.argtypes = [ctypes.c_char_p] libc.printf.restype = ctypes.c_int
libc.printf(b“Hello, world!\n”) ```
In this example, `ctypes` is used to load the C standard library (`libc.so.6`) and call the `printf` function. The `argtypes` and `restype` attributes are used to specify the argument and return types of the `printf` function, respectively. The `b“Hello, world!\n”` argument is a bytes object that represents the string to be printed.