gpt4 book ai didi

perl - 如何从 Perl 程序调用 C 函数?

转载 作者:行者123 更新时间:2023-12-04 21:58:34 29 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Calling C function from Perl within embedded C application

(1 个回答)


8年前关闭。



test.c :

int sum(int a, int b)
{
return (a+b);
}
test.pl :
# how do I call sum here?

最佳答案

use Inline C => <<'__END_OF_C__';

int sum(int a, int b)
{
return (a+b);
}

__END_OF_C__

say sum($x,$y);

关于perl - 如何从 Perl 程序调用 C 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15136890/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com