------------------------------------------------------------------------- Backwards compatibility. TODO: Should remove these. -------------------------------------------------------------------------
| 943 | // Backwards compatibility. TODO: Should remove these. |
| 944 | //------------------------------------------------------------------------- |
| 945 | RecInt |
| 946 | REC_readInteger(const char *name, bool *found, bool lock) |
| 947 | { |
| 948 | ink_assert(name); |
| 949 | RecInt _tmp = 0; |
| 950 | bool _found = (RecGetRecordInt(name, &_tmp, lock) == REC_ERR_OKAY); |
| 951 | |
| 952 | if (found) { |
| 953 | *found = _found; |
| 954 | } |
| 955 | return _tmp; |
| 956 | } |
| 957 | |
| 958 | RecFloat |
| 959 | REC_readFloat(char *name, bool *found, bool lock) |
no test coverage detected