Instead of this:
Code:
case 'r':
	{ Mufftastic code. }
case 'R':
	{ Same mufftastic code. }
I need something that combines them, like this (even though this code doesn't work):
Code:
case 'r' || 'R':
	{ Mufftastic code. }
Can anyone offer any advice? Examples, even? Thanks!