• Home
Name Date Size #Lines LOC

..--

MakefileD03-May-202450 42

README.txtD03-May-2024362 65

TestForwardDeclaration.pyD03-May-20242.2 KiB6745

foo.cD03-May-202467 86

foo.hD03-May-202445 52

main.cD03-May-2024163 1813

README.txt

1This example has a function call in foo.c named "foo" that takes a forward
2declaration to "struct bar" and uses it as a pointer argument. In main.c
3we have a real declaration for "struct bar". We want to be able to find the
4real definition of "struct bar" when we are stopped in foo in foo.c such that
5when we stop in "foo" we see the contents of the "bar_ptr".
6