Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 148 Bytes

python.md

File metadata and controls

7 lines (6 loc) · 148 Bytes

Invoke function from shared c library:

import ctypes

testlib = ctypes.CDLL('/path/to/libtest.so')
print(testlib.<name_of_func>(15))