tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

a.c (427B)


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