• Home
  • History
  • Annotate
  • only in /external/lldb/test/lang/c/forward/
NameDateSize

..12-Mar-20154 KiB

foo.c12-Mar-2015119

foo.h12-Mar-201545

main.c12-Mar-2015182

Makefile12-Mar-201582

README.txt12-Mar-2015362

TestForwardDeclaration.py12-Mar-20152.4 KiB

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