a.c 427 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #include "one.h"
  2. #include "two.h"
  3. #incldue "three.h"
  4. # include "permitted.h"
  5. #include "ext/good.c"
  6. #include "bad.c"
  7. int
  8. i_am_a_function(void)
  9. {
  10. call();
  11. call();
  12. /* comment
  13. another */
  14. return 3;
  15. }
  16. # include "five.h"
  17. long
  18. another_function(long x,
  19. long y)
  20. {
  21. int abcd;
  22. abcd = x+y;
  23. abcd *= abcd;
  24. /* comment here */
  25. return abcd +
  26. abcd +
  27. abcd;
  28. }
  29. /* And a comment to grow! */