a.c 387 B

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