| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "rational.h" 2 : 3 : /// Converts Return enum to a string 4 244 : const char *show_status(const Return status) 5 : { 6 244 : switch(status) 7 : { 8 178 : case SUCCESS: return "SUCCESS"; 9 24 : case FAILURE: return "FAILURE"; 10 40 : case WARNING: return "WARNING"; 11 0 : case DONOTHING: return "DONOTHING"; 12 0 : case HALTED: return "HALTED"; 13 2 : default: return "UNKNOWN"; 14 : } 15 : } |
| Generated by: LCOV version 2.0-1 |