| 103 | } |
| 104 | |
| 105 | static inline void *oidmap_iter_first(struct oidmap *map, |
| 106 | struct oidmap_iter *iter) |
| 107 | { |
| 108 | oidmap_iter_init(map, iter); |
| 109 | /* TODO: this API could be reworked to do compile-time type checks */ |
| 110 | return (void *)oidmap_iter_next(iter); |
| 111 | } |
| 112 | |
| 113 | #endif |
nothing calls this directly
no test coverage detected