File: crazy03.c

package info (click to toggle)
sparse 0.6.5~rc1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,768 kB
  • sloc: ansic: 46,405; sh: 614; perl: 299; python: 296; makefile: 282
file content (33 lines) | stat: -rw-r--r-- 357 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
extern char a;
extern int b;
extern char *c, *d;
extern void e(void);
extern void f(char *);

int g(int h);
int g(int h)
{
	if (h > 1)
		e();
	if (h > 1)
		return 0;
	for (;;) {
		if (a) {
			while (c) ;
			b = 0;
		} else {
			c = (void*)0;
			b = 1;
		}
		if (b) {
			f(c);
			continue;
		}
		d = c;
		while (*c++) ;
	}
}

/*
 * check-name: crazy03.c
 */