1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2025-02-17 09:37:55 +00:00
bitorchestra/f4.c
2011-11-14 10:13:02 -05:00

10 lines
142 B
C

int main(int t) {
for (t = 0;;t++) {
int i;
i = (t>>7-(t>>15)&-t>>7-(t>>15));
if (i==0)
continue;
putchar(t>>4|t&(t>>5)/i);
}
}