| 58 | } |
| 59 | |
| 60 | bool Record_ContainsEntry |
| 61 | ( |
| 62 | const Record r, |
| 63 | uint idx |
| 64 | ) { |
| 65 | ASSERT(idx < Record_length(r)); |
| 66 | return r->entries[idx].type != REC_TYPE_UNKNOWN; |
| 67 | } |
| 68 | |
| 69 | // retrieve the offset into the Record of the given alias |
| 70 | uint Record_GetEntryIdx |
no test coverage detected