]> Joshua Wise's Git repositories - firearm.git/blame_incremental - tests/costas.c
Enable part 2 of the Costas test program.
[firearm.git] / tests / costas.c
... / ...
CommitLineData
1extern void putc(unsigned char c);
2
3int main()
4{
5 unsigned char *costas = "Costas likes ass";
6
7 putc('A');
8 putc('n');
9 putc('u');
10 putc('s');
11 putc('?');
12
13 while (*costas)
14 {
15 putc(*costas);
16 costas++;
17 }
18 while(1)
19 ;
20
21 return 0;
22}
This page took 0.01471 seconds and 4 git commands to generate.