Hi,
I have ported an existing project to CB. In the project some function are declared as pairs of
extern char func1(int a);
extern char func1(int a)
{
function body
}
(if you ask why... it's because it's a semi auto-generated code). Now I can't go to a function in a file because (I assume) the extern definitions - the parser skips these functions definitions.
Is there a way around this? Can I go to a function even if it's declared as extern?
thanks-
Elie