Intro_function
mylib.h
Go to the documentation of this file.
1 #ifndef FILE_MYLIB // header guarding
2 #define FILE_MYLIB
3 
4 // Function with o n e return value
12 float c2k(float const grad_C); // declaration of function
13 
14 
15 // Function with m u l t i p le return values
25 void c2kf(float const grad_C, float& grad_K, float &grad_F); // declaration of function
26 
27 #endif
float c2k(float const grad_C)
Definition: mylib.cpp:5
void c2kf(float const grad_C, float &grad_K, float &grad_F)
Definition: mylib.cpp:14