argument c is void* so that this dtor can be given as function pointer to the vector resize function*/
| 660 | |
| 661 | /*argument c is void* so that this dtor can be given as function pointer to the vector resize function*/ |
| 662 | static void coin_cleanup(void* c) |
| 663 | { |
| 664 | uivector_cleanup(&((Coin*)c)->symbols); |
| 665 | } |
| 666 | |
| 667 | static void coin_copy(Coin* c1, const Coin* c2) |
| 668 | { |
no test coverage detected