| 182 | } |
| 183 | |
| 184 | xBase* xGroupGetItemPtr(xGroup* g, U32 index) |
| 185 | { |
| 186 | if ((g->flg_group & 1) == 0) |
| 187 | { |
| 188 | xGroupSetup(g); |
| 189 | } |
| 190 | return g->item != NULL ? g->item[index] : NULL; |
| 191 | } |
| 192 | |
| 193 | xBase* xGroupFindItemPtr(xGroup* g, U32 index) |
| 194 | { |
no test coverage detected