| 425 | mem_free(p); |
| 426 | } |
| 427 | bm_Node *bm_findNode(bm_T data) { |
| 428 | bm_Node *p; |
| 429 | if (!bm_hashTable) |
| 430 | return NULL; |
| 431 | /******************************* |
| 432 | * find bm_Node containing data * |
| 433 | *******************************/ |
| 434 | p = bm_hashTable[bm_hash(data)]; |
| 435 | while (p && !compEQ(p->data, data)) |
| 436 | p = p->next; |
| 437 | return p; |
| 438 | } |
| 439 | // simply frees up a bitmap |
| 440 | void bm_FreeBitmapMain(int handle); |
| 441 | // Sets all the bitmaps to unused |
no test coverage detected