摘要: 将接口暴露出来 在test.c 中直接写出如下所示的代码 vim test.c #include<stdio.h> int add(int a,int b) { return a+b; } int main(int argc,char** argv) { return add(1,2); } 使用 阅读全文
posted @ 2022-10-11 15:31 simp00 阅读(166) 评论(0) 推荐(0) 编辑