python使用ctype调用C链接库
相对于传统的C调用,使用ctype实在是太简单了
编写一个动态链接库ctype_test.c,
#include <stdlib.h>int foo(int a, int b){ printf("Your input %i and %i\n", a, b); return a + b;}
gcc -o ctype.so -shared -fPIC ctype_test.c
import ctypesll = ctypes.cdll.LoadLibrary # 我这是在linux下,windows调用windll之类的lib = ll("./ctype.so")lib.foo(1, 3)