| 654 | } Coin; |
| 655 | |
| 656 | static void coin_init(Coin* c) |
| 657 | { |
| 658 | uivector_init(&c->symbols); |
| 659 | } |
| 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) |
no test coverage detected