argument c is void* so that this dtor can be given as function pointer to the vector resize function*/
| 677 | |
| 678 | /*argument c is void* so that this dtor can be given as function pointer to the vector resize function*/ |
| 679 | static void coin_cleanup(void* c) |
| 680 | { |
| 681 | uivector_cleanup(&((Coin*)c)->symbols); |
| 682 | } |
| 683 | |
| 684 | static void coin_copy(Coin* c1, const Coin* c2) |
| 685 | { |
no test coverage detected