| 67 | // add an object `obj' to the list who's head pointer is pointed to by `first'. |
| 68 | |
| 69 | static inline void addObjectToList (dObject *obj, dObject **first) |
| 70 | { |
| 71 | obj->next = *first; |
| 72 | obj->tome = first; |
| 73 | if (*first) (*first)->tome = &obj->next; |
| 74 | (*first) = obj; |
| 75 | } |
| 76 | |
| 77 | |
| 78 | // remove the object from the linked list |
no outgoing calls
no test coverage detected