网上很多,
首先写一个test.c的源码
int
add(
int
a,
int
b)
{
return
a + b;
}
import ctypes as c libc = c.cdll.LoadLibrary('/home/zhaodao/ffb_workspace/ctypes学习/test.so') ans = libc.add(10, 2) print(ans)
ck d 已回答的问题 2019年12月10日
网上很多,
首先写一个test.c的源码
int
add(
int
a,
int
b)
{
return
a + b;
}
import ctypes as c libc = c.cdll.LoadLibrary('/home/zhaodao/ffb_workspace/ctypes学习/test.so') ans = libc.add(10, 2) print(ans)