| 969 | } |
| 970 | |
| 971 | RecCounter |
| 972 | REC_readCounter(char *name, bool *found, bool lock) |
| 973 | { |
| 974 | ink_assert(name); |
| 975 | RecCounter _tmp = 0; |
| 976 | bool _found = (RecGetRecordCounter(name, &_tmp, lock) == REC_ERR_OKAY); |
| 977 | |
| 978 | if (found) { |
| 979 | *found = _found; |
| 980 | } |
| 981 | return _tmp; |
| 982 | } |
| 983 | |
| 984 | RecString |
| 985 | REC_readString(const char *name, bool *found, bool lock) |
no test coverage detected