C-Playground/lib/temperature.h

9 lines
124 B
C
Executable File

#ifndef TEMP_H
#define TEMP_H
float farenheitToCelsius(float farenheit);
float celsiusToFarenheit(float celsius);
#endif