C-Playground/lib/temperature.h

9 lines
128 B
C
Executable File

#ifndef TEMP_H
#define TEMP_H
float farenheit_to_celsius(float farenheit);
float celsius_to_farenheit(float celsius);
#endif