// FtoCstub.js   P.Conrad for CISC103, 10/24/2007

// function to convert celsius to fahrenheit
//  consumes: fTemp, number, temperature in Fahrenheit
//  produces: cTemp, number, temperature in celsius

function FtoC(fTemp) {
   return -4242; // stub for testing
}
