123456789101112131415161718192021222324252627282930 |
- /**
- Part of tempconv. Definitions for temperature converter functions
- */
- #include <stdio.h>
- #include <stdlib.h>
- #ifndef _CONVERTER_H
- #define _CONVERTER_H
- float
- ctof(float c);
- float
- ftoc(float f);
- float
- ctok(float c);
- float
- ktoc(float k);
- float
- ftok(float f);
- float
- ktof(float k);
- #endif /* _CONVERTER_H */
|