converter.h 317 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. Part of tempconv. Definitions for temperature converter functions
  3. */
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #ifndef _CONVERTER_H
  7. #define _CONVERTER_H
  8. float
  9. ctof(float c);
  10. float
  11. ftoc(float f);
  12. float
  13. ctok(float c);
  14. float
  15. ktoc(float k);
  16. float
  17. ftok(float f);
  18. float
  19. ktof(float k);
  20. #endif /* _CONVERTER_H */