You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
293 B

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
  1. #ifndef TEMPERATUR_H
  2. #define TEMPERATUR_H
  3. float CzuF(float tempC);
  4. float CzuK(float tempC);
  5. float FzuC(float tempF);
  6. float FzuK(float tempF);
  7. float KzuC(float tempK);
  8. float KzuF(float tempK);
  9. const char* getFirstUnit(int input);
  10. const char* getSecondUnit(int input);
  11. #endif //TEMPERATUR_H