mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 05:06:48 +08:00
5 lines
102 B
Python
5 lines
102 B
Python
from ctypes import *
|
|
|
|
so_file = "./my_square.so"
|
|
my_funcs = CDLL(so_file)
|
|
print(my_funcs.square(10))
|