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.

14 lines
255 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year 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. #endif //TEMPERATUR_H