top | item 37358420

(no title)

runald | 2 years ago

https://www.chiark.greenend.org.uk/~sgtatham/coroutines.html

  int function(void) {
      static int i, state = 0;
      switch (state) {
          case 0: /* start of function */
          for (i = 0; i < 10; i++) {
              state = 1; /* so we will come back to "case 1" */
              return i;
              case 1:; /* resume control straight after the return */
          }
      }
  }


Huh, I didn't know you could put case statements arbitrarily anywhere inside a switch block in C. Past the initial WTF, it's a nice hack for implementing coroutines.

discuss

order

jedimastert|2 years ago

As I understand it, they're kinda syntactic sugar for goto statements.

gemstones|2 years ago

Personal preferences differ, but I would find this code so much cleaner if it was a goto.