| 157 | */ |
| 158 | |
| 159 | __inline_call void_type push_item ( |
| 160 | item_type*&_head, |
| 161 | item_type *_item |
| 162 | ) |
| 163 | { |
| 164 | /*--------------------------------- append about head */ |
| 165 | _item->_next = _head; |
| 166 | _head =_item ; |
| 167 | } |
| 168 | |
| 169 | __inline_call void_type _pop_item ( |
| 170 | item_type*&_head, |
nothing calls this directly
no outgoing calls
no test coverage detected