from cffi import FFI ffibuilder = FFI() ffibuilder.set_source("_example", r""" int add(const int a, const int b) { return a+b; } ...
確定! 回上一頁