基本上,我有一个 FileA.c:
//FIleA.c
void inline something()
{
//short code here
}
void inline another()
{
//short code here
}
现在我想在另一个文件 main.c 中调用这些内联函数 而不使用头文件。我应该如何在 main.c 中声明这些函数的原型?
//main.c
#include "FileA.c"
void something();
void another();
// or ???
int main()
{
something();
another();
something();
another();
return 0;
}