The above assumes that foo is a static function inside fileA.c, and this works since the files are compiled together.
0
MSalters
On
Not. The compiler has every right to not include funcA in fileA.obj. And even if it is included, it might not be in a form that the linker can use. In fact, if included it must be in a way that doesn't clash with other functions names funcA
In general you cannot, that's the entire point of
static
in this case.Perhaps
fileA.c
has a way to get the address of the function, then you can use that to make a call, but you can't referencestatic
symbols directly.For test code, one "trick" that's often done is to
#include
the C file in the test file, so infileA_test.c
you'd have:The above assumes that
foo
is astatic
function insidefileA.c
, and this works since the files are compiled together.