| 316 | |
| 317 | |
| 318 | void REJMAP::initialise( //Redefine map |
| 319 | inT16 length) { |
| 320 | if (ptr != NULL) |
| 321 | free_struct (ptr, len * sizeof (REJ), "REJ"); |
| 322 | len = length; |
| 323 | if (len > 0) |
| 324 | ptr = (REJ *) memset (alloc_struct (len * sizeof (REJ), "REJ"), |
| 325 | 0, len * sizeof (REJ)); |
| 326 | else |
| 327 | ptr = NULL; |
| 328 | } |
| 329 | |
| 330 | |
| 331 | inT16 REJMAP::accept_count() { //How many accepted? |
no test coverage detected