摘要: calc.c#include <stdio.h> #include <Python.h> int add(int x, int y){ // C 函数 return x + y; } static PyObject *calc_add(PyObject *self, PyObject *args){ 阅读全文
posted @ 2022-11-14 14:25 腹肌猿 阅读(109) 评论(0) 推荐(0) 编辑