| 671 | } Coin; |
| 672 | |
| 673 | static void coin_init(Coin* c) |
| 674 | { |
| 675 | uivector_init(&c->symbols); |
| 676 | } |
| 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) |
no test coverage detected