• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

MakefileD22-Nov-202382 63

README.txtD22-Nov-2023362 65

TestForwardDeclaration.pyD22-Nov-20232.4 KiB6843

foo.cD22-Nov-2023119 97

foo.hD22-Nov-202345 52

main.cD22-Nov-2023182 1914

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