|
|
|
|
|
by monocasa
1925 days ago
|
|
I'd like to see the use of goto. There's two 'allowed' uses in C that are common and represent good code even today. goto error cleanup stubs, and goto in virtual machine dispatch loops. The size of the codebase doesn't really matter for those cases; they're largely considered the idiomatic way to go about the problems they're trying to solve. |
|