File: names.c

package info (click to toggle)
lclint-doc 2.4b-1
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 2,364 kB
  • ctags: 2,164
  • sloc: ansic: 402; makefile: 122
file content (15 lines) | stat: -rw-r--r-- 178 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
char *stringreverse (char *s);

int f (int x)
{
  int lookalike = 1;
  int looka1ike = 2;

  if (x > 3)
    {
      int x = lookalike;
      x += looka1ike;
    }

  return x;
}