"Fossies" - the Fresh Open Source Software Archive

Member "tor-0.4.8.9/scripts/maint/practracker/testdata/a.c" (9 Nov 2023, 427 Bytes) of package /linux/misc/tor-0.4.8.9.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

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