| 173 | } |
| 174 | |
| 175 | staticfn void |
| 176 | wl_addtail(struct winlink *wl) |
| 177 | { |
| 178 | struct winlink *p = chain; |
| 179 | |
| 180 | if (!chain) { |
| 181 | chain = wl; |
| 182 | return; |
| 183 | } |
| 184 | while (p->nextlink) { |
| 185 | p = p->nextlink; |
| 186 | } |
| 187 | p->nextlink = wl; |
| 188 | return; |
| 189 | } |
| 190 | #endif /* WINCHAIN */ |
| 191 | |
| 192 | boolean |
no outgoing calls
no test coverage detected