| 956 | } |
| 957 | |
| 958 | RecFloat |
| 959 | REC_readFloat(char *name, bool *found, bool lock) |
| 960 | { |
| 961 | ink_assert(name); |
| 962 | RecFloat _tmp = 0.0; |
| 963 | bool _found = (RecGetRecordFloat(name, &_tmp, lock) == REC_ERR_OKAY); |
| 964 | |
| 965 | if (found) { |
| 966 | *found = _found; |
| 967 | } |
| 968 | return _tmp; |
| 969 | } |
| 970 | |
| 971 | RecCounter |
| 972 | REC_readCounter(char *name, bool *found, bool lock) |
no test coverage detected