Switch Statements

switch(c)
	{
	case 'n':
		c = '\n';
		break;

	case 'r':
		c = '\r';
		break;

	default:
		break;
	}