| 49 | #endif |
| 50 | |
| 51 | int sleftv::listLength() |
| 52 | { |
| 53 | int n = 1; |
| 54 | leftv sl = next; |
| 55 | while (sl!=NULL) |
| 56 | { |
| 57 | n++; |
| 58 | sl=sl->next; |
| 59 | } |
| 60 | return n; |
| 61 | } |
| 62 | |
| 63 | void sleftv::Print(leftv store, int spaces) |
| 64 | { |
no outgoing calls
no test coverage detected