| 249 | } |
| 250 | |
| 251 | void append(KeyTable* keytable) { |
| 252 | if (keytable == NULL) { |
| 253 | return; |
| 254 | } |
| 255 | if (_head == NULL) { |
| 256 | _head = _tail = keytable; |
| 257 | } else { |
| 258 | _tail->next = keytable; |
| 259 | _tail = keytable; |
| 260 | } |
| 261 | keytable->next = NULL; |
| 262 | _length++; |
| 263 | } |
| 264 | |
| 265 | KeyTable* remove_front() { |
| 266 | if (_head == NULL) { |
no outgoing calls
no test coverage detected