Name: Anonymous 2011-12-21 15:17
Inspired by whitespace. Instead of whitespace, everything is ;
void push(int x)
{
if (stack_idx >= STACK_SIZE-1) {
printf("Stack overflow!\n", STACK_SIZE);
exit(1);
}
stack[++stack_idx] = x;
}
void push(int x):
if (stack_idx >= STACK_SIZE-1):
printf("Stack overflow!\n", STACK_SIZE)
exit(1)
stack[++stack_idx] = x