| 344 | // |
| 345 | |
| 346 | gpre_nod* MSC_pop(gpre_lls** pointer) |
| 347 | { |
| 348 | gpre_lls* stack = *pointer; |
| 349 | gpre_nod* node = stack->lls_object; |
| 350 | *pointer = stack->lls_next; |
| 351 | |
| 352 | stack->lls_next = free_lls; |
| 353 | free_lls = stack; |
| 354 | |
| 355 | return node; |
| 356 | } |
| 357 | |
| 358 | |
| 359 | //____________________________________________________________ |
no outgoing calls
no test coverage detected