from cffi import FFI ffibuilder = FFI() with open("test.c", 'r') as f: ffibuilder.set_source("mymodule", f.read()) with open("test.h", ...
確定! 回上一頁