| 152 | |
| 153 | |
| 154 | void hComp(scfmon exist, int Nexist, int ak, scfmon stc, int *Nstc) |
| 155 | { |
| 156 | int k = 0; |
| 157 | scfmon ex = exist, co = stc; |
| 158 | int i; |
| 159 | |
| 160 | for (i = Nexist; i>0; i--) |
| 161 | { |
| 162 | if (((**ex) == 0) || ((**ex) == ak)) |
| 163 | { |
| 164 | *co = *ex; |
| 165 | co++; |
| 166 | k++; |
| 167 | } |
| 168 | ex++; |
| 169 | } |
| 170 | *Nstc = k; |
| 171 | } |
| 172 | |
| 173 | |
| 174 | void hSupp(scfmon stc, int Nstc, varset var, int *Nvar) |
no outgoing calls
no test coverage detected