File: a.c

package info (click to toggle)
tor 0.4.8.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,852 kB
  • sloc: ansic: 314,750; sh: 7,388; python: 1,829; makefile: 620; perl: 249; pascal: 141
file content (41 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

#include "one.h"
#include "two.h"
#incldue "three.h"

# include "permitted.h"

#include "ext/good.c"
#include "bad.c"

int
i_am_a_function(void)
{
  call();
  call();
  /* comment

     another */

  return 3;
}

#	include  "five.h"

long
another_function(long x,
                 long y)
{
  int abcd;

  abcd = x+y;
  abcd *= abcd;

  /* comment here */

  return abcd +
    abcd +
    abcd;
}

/* And a comment to grow! */