| 300 | } |
| 301 | |
| 302 | RecErrT |
| 303 | RecLinkConfigString(const char *name, RecString *rec_string) |
| 304 | { |
| 305 | if (RecGetRecordString_Xmalloc(name, rec_string) == REC_ERR_FAIL) { |
| 306 | return REC_ERR_FAIL; |
| 307 | } |
| 308 | return RecRegisterConfigUpdateCb(name, link_string_alloc, (void *)rec_string); |
| 309 | } |
| 310 | |
| 311 | RecErrT |
| 312 | RecLinkConfigByte(const char *name, RecByte *rec_byte) |
nothing calls this directly
no test coverage detected