NUTS
 All Files Functions Pages
Testfile.c
Go to the documentation of this file.
1 
5 #include <stdio.h>
6 #include "someheader.h"
7 
8 
12 int main()
13 {
14  int i;
15  // Some normal comments
16  for(i = 0; i < 100; i++)
17  {
18  //Loop stuff.
19  }
20 
21  return 0;
22 }
23 
28 int bar(int foo)
29 {
30  //Comment
31  return 0;
32 
33 }